override fun equals()

in crumb-compiler/src/main/kotlin/com/uber/crumb/internal/model/Crumb.kt [51:57]


  override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is Crumb) return false
    return unknownFields == other.unknownFields
        && name == other.name
        && extras == other.extras
  }