mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Show selected folders in navigation menu
This commit is contained in:
@@ -21,8 +21,6 @@ package eu.faircode.email;
|
||||
|
||||
public class TupleAccountEx extends EntityAccount {
|
||||
public int unseen;
|
||||
public int unsent;
|
||||
public int operations;
|
||||
public int identities; // synchronizing
|
||||
public boolean drafts;
|
||||
|
||||
@@ -43,8 +41,6 @@ public class TupleAccountEx extends EntityAccount {
|
||||
TupleAccountEx other = (TupleAccountEx) obj;
|
||||
return (super.equals(obj) &&
|
||||
this.unseen == other.unseen &&
|
||||
this.unsent == other.unsent &&
|
||||
this.operations == other.operations &&
|
||||
this.identities == other.identities &&
|
||||
this.drafts == other.drafts);
|
||||
} else
|
||||
|
||||
Reference in New Issue
Block a user