mirror of https://github.com/M66B/FairEmail.git
Refactoring
This commit is contained in:
parent
5977166f20
commit
60a87826c9
|
@ -34,9 +34,9 @@ public class TupleFolderEx extends EntityFolder {
|
||||||
if (obj instanceof TupleFolderEx) {
|
if (obj instanceof TupleFolderEx) {
|
||||||
TupleFolderEx other = (TupleFolderEx) obj;
|
TupleFolderEx other = (TupleFolderEx) obj;
|
||||||
return (super.equals(obj) &&
|
return (super.equals(obj) &&
|
||||||
Objects.equals(accountName, other.accountName) &&
|
Objects.equals(this.accountName, other.accountName) &&
|
||||||
Objects.equals(this.accountColor, other.accountColor) &&
|
Objects.equals(this.accountColor, other.accountColor) &&
|
||||||
Objects.equals(accountState, other.accountState) &&
|
Objects.equals(this.accountState, other.accountState) &&
|
||||||
this.messages == other.messages &&
|
this.messages == other.messages &&
|
||||||
this.content == other.content &&
|
this.content == other.content &&
|
||||||
this.unseen == other.unseen);
|
this.unseen == other.unseen);
|
||||||
|
|
Loading…
Reference in New Issue