Commit fc1d0019 authored by Adam Blank's avatar Adam Blank
Browse files

Update Point.java

No related merge requests found
Pipeline #10041 failed with stage
in 0 seconds
Showing with 1 addition and 0 deletions
+1 -0
......@@ -26,6 +26,7 @@ public class Point {
* Returns true if the point passed has the same x and y coordinate as
* this point, or false otherwise.
*/
@Override
public boolean equals(Point point) {
if (point == null) return false;
int x = point.x;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment