mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-31 18:11:03 +01:00
Removed POP3 support
There are too many disadvantages likely resulting in too many support questions
This commit is contained in:
@@ -22,7 +22,6 @@ package eu.faircode.email;
|
||||
public class TupleFolderEx extends EntityFolder {
|
||||
public String accountName;
|
||||
public Integer accountColor;
|
||||
public boolean accountPop;
|
||||
public String accountState;
|
||||
public int messages;
|
||||
public int content;
|
||||
@@ -35,7 +34,6 @@ public class TupleFolderEx extends EntityFolder {
|
||||
return (super.equals(obj) &&
|
||||
(this.accountName == null ? other.accountName == null : accountName.equals(other.accountName)) &&
|
||||
(this.accountColor == null ? other.accountColor == null : this.accountColor.equals(other.accountColor)) &&
|
||||
this.accountPop == other.accountPop &&
|
||||
(this.accountState == null ? other.accountState == null : accountState.equals(other.accountState)) &&
|
||||
this.messages == other.messages &&
|
||||
this.content == other.content &&
|
||||
|
||||
Reference in New Issue
Block a user