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
@@ -47,7 +47,7 @@ public class ModifyAwareList<E> implements List<E>, ModifyAwareOwner {
@Override
public int hashCode() {
return Objects.hash(list);
return list.hashCode();
}
@Override