We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a57cbe commit d1351faCopy full SHA for d1351fa
src/main/java/org/scijava/io/BytesLocation.java
@@ -72,4 +72,13 @@ public void setByteBuffer(final ByteBuffer bytes) {
72
this.bytes = bytes;
73
}
74
75
+ @Override
76
+ public int hashCode() {
77
+ return System.identityHashCode(this);
78
+ }
79
+
80
81
+ public boolean equals(final Object obj) {
82
+ return obj == this;
83
84
0 commit comments