mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 05:44:51 +02:00
Revert "Removed drafts warning from identities"
This reverts commit 1dee158194.
This commit is contained in:
@@ -23,13 +23,15 @@ import java.util.Objects;
|
||||
|
||||
public class TupleIdentityEx extends EntityIdentity {
|
||||
public String accountName;
|
||||
public Long drafts;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof TupleIdentityEx) {
|
||||
TupleIdentityEx other = (TupleIdentityEx) obj;
|
||||
return (super.equals(obj) &&
|
||||
Objects.equals(accountName, other.accountName));
|
||||
Objects.equals(accountName, other.accountName) &&
|
||||
Objects.equals(drafts, other.drafts));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user