Add tests and fixes in hashCode

This commit is contained in:
Roland Praml
2019-05-08 17:00:08 +02:00
parent 662f9cdeb3
commit 579c1efcf6
6 changed files with 132 additions and 7 deletions
@@ -66,7 +66,7 @@ public class ModifyAwareSet<E> implements Set<E>, ModifyAwareOwner {
@Override
public int hashCode() {
return Objects.hash(set);
return set.hashCode();
}
@Override