We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78194a commit 85f202bCopy full SHA for 85f202b
src/main/java/org/scijava/io/location/BytesLocation.java
@@ -61,4 +61,15 @@ public ByteBuffer getByteBuffer() {
61
return bytes;
62
}
63
64
+ // -- Object methods --
65
+
66
+ @Override
67
+ public int hashCode() {
68
+ return System.identityHashCode(this);
69
+ }
70
71
72
+ public boolean equals(final Object obj) {
73
+ return obj == this;
74
75
0 commit comments