Fixed that amount has been compared with other
This commit is contained in:
parent
374818f748
commit
561114ee26
|
@ -90,7 +90,7 @@ open class AccountTransaction(
|
||||||
if (other !is AccountTransaction) return false
|
if (other !is AccountTransaction) return false
|
||||||
|
|
||||||
if (bankAccount != other.bankAccount) return false
|
if (bankAccount != other.bankAccount) return false
|
||||||
if (amount != other) return false // TODO: does this work?
|
if (amount != other.amount) return false
|
||||||
if (currency != other.currency) return false
|
if (currency != other.currency) return false
|
||||||
if (unparsedUsage != other.unparsedUsage) return false
|
if (unparsedUsage != other.unparsedUsage) return false
|
||||||
if (bookingDate != other.bookingDate) return false
|
if (bookingDate != other.bookingDate) return false
|
||||||
|
|
Loading…
Reference in New Issue