We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc3dbb commit e391a63Copy full SHA for e391a63
src/main/java/bwapi/point/Point.java
@@ -33,7 +33,7 @@ public String toString() {
33
34
public boolean equals(Object o) {
35
if (!(o instanceof Point)) return false;
36
- Point point = (Position) o;
+ Point point = (Point) o;
37
return scalar == point.scalar && x == point.x && y == point.y;
38
}
39
0 commit comments