mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 03:15:39 +01:00
Refactoring
This commit is contained in:
@@ -26,16 +26,4 @@ public class TupleFolderNav extends EntityFolder implements Serializable {
|
||||
public Integer color; // account
|
||||
public int unseen;
|
||||
public int operations;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof TupleFolderNav) {
|
||||
TupleFolderNav other = (TupleFolderNav) obj;
|
||||
return (super.equals(obj) &&
|
||||
Objects.equals(this.color, other.color) &&
|
||||
this.unseen == other.unseen &&
|
||||
this.operations == other.operations);
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user