We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/ome/omero-insight/blob/4e8d0754713b0a3c74908b4ebaa9ebae4e378a14/src/main/java/org/openmicroscopy/shoola/util/math/geom2D/PlanePoint2D.java#L232C5-L237C6
Referring to this code snippet:
public boolean equals(Object o) { if (o == null || (!(o instanceof PlanePoint))) return false; PlanePoint other = (PlanePoint) o; return (x1 == other.x1 && x2 == other.x2); }
Should the 3 references to PlanePoint actually be PlanePoint2D?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/ome/omero-insight/blob/4e8d0754713b0a3c74908b4ebaa9ebae4e378a14/src/main/java/org/openmicroscopy/shoola/util/math/geom2D/PlanePoint2D.java#L232C5-L237C6
Referring to this code snippet:
Should the 3 references to PlanePoint actually be PlanePoint2D?
The text was updated successfully, but these errors were encountered: