We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e739f commit b92d4a2Copy full SHA for b92d4a2
runtime/runtime-core/native/src/aws/smithy/kotlin/runtime/time/InstantNative.kt
@@ -106,4 +106,5 @@ public actual class Instant(internal val delegate: KtInstant) : Comparable<Insta
106
107
public override fun equals(other: Any?): Boolean = other is Instant && delegate == other.delegate
108
public override fun toString(): String = delegate.toString()
109
+ public override fun hashCode(): Int = delegate.hashCode()
110
}
0 commit comments