mirror of https://github.com/M66B/FairEmail.git
Simplification
This commit is contained in:
parent
13c2a92cfb
commit
97e575b644
|
@ -19,8 +19,6 @@ package eu.faircode.email;
|
||||||
Copyright 2018-2019 by Marcel Bokhorst (M66B)
|
Copyright 2018-2019 by Marcel Bokhorst (M66B)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
public class TupleAccountEx extends EntityAccount {
|
public class TupleAccountEx extends EntityAccount {
|
||||||
public int unseen;
|
public int unseen;
|
||||||
public int unsent;
|
public int unsent;
|
||||||
|
@ -29,20 +27,10 @@ public class TupleAccountEx extends EntityAccount {
|
||||||
public boolean uiEquals(Object obj) {
|
public boolean uiEquals(Object obj) {
|
||||||
if (obj instanceof TupleAccountEx) {
|
if (obj instanceof TupleAccountEx) {
|
||||||
TupleAccountEx other = (TupleAccountEx) obj;
|
TupleAccountEx other = (TupleAccountEx) obj;
|
||||||
return (this.user.equals(other.user) &&
|
return (super.equals(obj) &&
|
||||||
Objects.equals(this.name, other.name) &&
|
|
||||||
Objects.equals(this.color, other.color) &&
|
|
||||||
this.synchronize.equals(other.synchronize) &&
|
|
||||||
this.primary.equals(other.primary) &&
|
|
||||||
this.notify.equals(other.notify) &&
|
|
||||||
Objects.equals(this.tbd, other.tbd) &&
|
|
||||||
Objects.equals(this.state, other.state) &&
|
|
||||||
Objects.equals(this.error, other.error) &&
|
|
||||||
Objects.equals(this.last_connected, other.last_connected) &&
|
|
||||||
this.unseen == other.unseen);
|
this.unseen == other.unseen);
|
||||||
} else
|
} else
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue