|
|
@ -24,17 +24,6 @@ public class TupleAccountEx extends EntityAccount {
|
|
|
|
public int identities; // synchronizing
|
|
|
|
public int identities; // synchronizing
|
|
|
|
public boolean drafts;
|
|
|
|
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
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object obj) {
|
|
|
|
public boolean equals(Object obj) {
|
|
|
|
if (obj instanceof TupleAccountEx) {
|
|
|
|
if (obj instanceof TupleAccountEx) {
|
|
|
|