in src/main/kotlin/com/haulmont/astronomy/model/Carrier.kt [21:27]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || Hibernate.getClass(this) != Hibernate.getClass(other)) return false
other as Carrier
return id != null && id == other.id
}