Fixed equals

This commit is contained in:
M66B
2018-08-04 19:54:33 +00:00
parent 242be4c511
commit fe1e43ad27
4 changed files with 19 additions and 19 deletions

View File

@@ -93,7 +93,7 @@ public class EntityFolder {
public boolean equals(Object obj) {
if (obj instanceof EntityFolder) {
EntityFolder other = (EntityFolder) obj;
return (this.account == null ? other.account == null : this.account.equals(other.account) &&
return ((this.account == null ? other.account == null : this.account.equals(other.account)) &&
this.name.equals(other.name) &&
this.type.equals(other.type) &&
this.synchronize.equals(other.synchronize) &&