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

@@ -61,7 +61,6 @@ public class Contact {
@Override
public boolean equals(Object o) {
if (o instanceof Contact) return id.equals(((Contact) o).id);
return false;
return o instanceof Contact && id.equals(((Contact) o).id);
}
}