From f5d68895c250b8b70c2b91d255fd53dc54b17a95 Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 10 May 2020 10:14:28 +0200 Subject: [PATCH] Refactoring --- app/src/main/java/eu/faircode/email/TupleFolderEx.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/TupleFolderEx.java b/app/src/main/java/eu/faircode/email/TupleFolderEx.java index aaa3fbef8c..402d26d052 100644 --- a/app/src/main/java/eu/faircode/email/TupleFolderEx.java +++ b/app/src/main/java/eu/faircode/email/TupleFolderEx.java @@ -67,8 +67,8 @@ public class TupleFolderEx extends EntityFolder implements Serializable { TupleFolderEx other = (TupleFolderEx) obj; return (super.equals(obj) && Objects.equals(this.accountId, other.accountId) && - Objects.equals(this.accountOrder, other.accountOrder) && Objects.equals(this.accountProtocol, other.accountProtocol) && + Objects.equals(this.accountOrder, other.accountOrder) && Objects.equals(this.accountName, other.accountName) && Objects.equals(this.accountState, other.accountState) && this.rules == other.rules &&