Fixed case insensitive name compare bug
This commit is contained in:
parent
069464510c
commit
609d25417a
|
@ -15,7 +15,7 @@ data class Remittee(
|
||||||
if (this === other) return true
|
if (this === other) return true
|
||||||
if (other !is Remittee) return false
|
if (other !is Remittee) return false
|
||||||
|
|
||||||
if (name.equals(other.name, true)) return false
|
if (name.equals(other.name, true) == false) return false
|
||||||
if (iban != other.iban) return false
|
if (iban != other.iban) return false
|
||||||
if (bic != other.bic) return false
|
if (bic != other.bic) return false
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue