mirror of
https://github.com/M66B/FairEmail.git
synced 2026-05-15 11:58:38 +02:00
Added account to local contacts
This commit is contained in:
15
app/src/main/java/eu/faircode/email/TupleContactEx.java
Normal file
15
app/src/main/java/eu/faircode/email/TupleContactEx.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package eu.faircode.email;
|
||||
|
||||
public class TupleContactEx extends EntityContact {
|
||||
public String accountName;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof TupleContactEx) {
|
||||
TupleContactEx other = (TupleContactEx) obj;
|
||||
return (super.equals(obj) &&
|
||||
accountName.equals(other.accountName));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user