Details
-
Enhancement
-
Status: Closed
-
Minor
-
Resolution: Done
-
1.0.0.CR2
-
None
Description
org.jboss.arquillian.ajocado.geometry.Point should override default equals and hashCode, since now the following statement does not return what expected, that these two points should be equal:
Point point1 = new Point(20, 20); Point point2 = new Point(20, 20); point1.equals(point2);