mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Prevent NPE
This commit is contained in:
parent
b27ab6240d
commit
1ddd42fcac
1 changed files with 3 additions and 3 deletions
|
@ -50,11 +50,11 @@ public class TupleIdentityView {
|
|||
if (obj instanceof TupleIdentityView) {
|
||||
TupleIdentityView other = (TupleIdentityView) obj;
|
||||
return (this.id.equals(other.id) &&
|
||||
this.name.equals(other.name) &&
|
||||
this.email.equals(other.email) &&
|
||||
Objects.equals(this.name, other.name) &&
|
||||
Objects.equals(this.email, other.email) &&
|
||||
Objects.equals(this.display, other.display) &&
|
||||
Objects.equals(this.color, other.color) &&
|
||||
this.synchronize.equals(other.synchronize));
|
||||
Objects.equals(this.synchronize, other.synchronize));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue