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 8ff36f3 commit 6cc9a62Copy full SHA for 6cc9a62
onebusaway-sdk-kotlin-core/src/main/kotlin/org/onebusaway/core/Values.kt
@@ -140,6 +140,8 @@ sealed class JsonField<out T : Any> {
140
// This filter should not be used directly and should instead use the @ExcludeMissing annotation
141
class IsMissing {
142
override fun equals(other: Any?): Boolean = other is JsonMissing
143
+
144
+ override fun hashCode(): Int = Objects.hash()
145
}
146
147
class Deserializer(private val type: JavaType? = null) :
0 commit comments