dstarcev
03/17/2017, 3:51 PMas
do when used as a statement? override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other?.javaClass != javaClass) return false
other as EntityNotFoundException
if (entityId != other.entityId) return false
if (entityType != other.entityType) return false
return true
}