Identity manager hooks. #209

This commit is contained in:
akwizgran
2016-01-20 12:03:15 +00:00
parent 82cf12040f
commit c4692a7007
16 changed files with 258 additions and 53 deletions

View File

@@ -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;
}
}