mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Simplification
This commit is contained in:
@@ -24,17 +24,6 @@ public class TupleAccountEx extends EntityAccount {
|
||||
public int identities; // synchronizing
|
||||
public boolean drafts;
|
||||
|
||||
public boolean uiEquals(Object obj) {
|
||||
if (obj instanceof TupleAccountEx) {
|
||||
TupleAccountEx other = (TupleAccountEx) obj;
|
||||
return (super.equals(obj) &&
|
||||
this.unseen == other.unseen &&
|
||||
this.identities == other.identities &&
|
||||
this.drafts == other.drafts);
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof TupleAccountEx) {
|
||||
|
||||
Reference in New Issue
Block a user