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
@@ -2,7 +2,6 @@ package io.ebeaninternal.json;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
@@ -50,7 +49,7 @@ public class ModifyAwareMap<K, V> implements Map<K, V>, ModifyAwareOwner {
@Override
public int hashCode() {
return Objects.hash(map);
return map.hashCode();
}
@Override