Object Model Violation: Just One of Equals and Hashcode Defined
CWE-581
Short description
The product does not maintain equal hashcodes for equal objects.
Extended description
Java objects are expected to obey a number of invariants related to equality. One of these invariants is that equal objects must have equal hashcodes. In other words, if a.equals(b) == true then a.hashCode() == b.hashCode().