in crumb-compiler/src/main/kotlin/com/uber/crumb/internal/model/CrumbMetadata.kt [55:63]
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = extensionKey.hashCode()
result = result * 37 + producerMetadata.hashCode()
super.hashCode = result
}
return result
}