mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Identity manager hooks. #209
This commit is contained in:
@@ -23,7 +23,6 @@ public class ContactId {
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (o instanceof ContactId) return id == ((ContactId) o).id;
|
||||
return false;
|
||||
return o instanceof ContactId && id == ((ContactId) o).id;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user