override fun equals()

in crumb-compiler/src/main/kotlin/com/uber/crumb/internal/model/CrumbMetadata.kt [47:53]


  override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is CrumbMetadata) return false
    return unknownFields == other.unknownFields
        && extensionKey == other.extensionKey
        && producerMetadata == other.producerMetadata
  }