StefanOltmann commented on code in PR #366:
URL: https://github.com/apache/commons-imaging/pull/366#discussion_r1518980540


##########
src/main/java/org/apache/commons/imaging/formats/tiff/write/TiffOutputField.java:
##########
@@ -66,6 +66,11 @@ public boolean bytesEqual(final byte[] data) {
         return Arrays.equals(bytes, data);
     }
 
+    /* Only used in tests. */
+    protected boolean bytesEqual(final TiffOutputField other) {
+        return Arrays.equals(bytes, other.bytes);
+    }
+
     protected AbstractTiffOutputItem getSeperateValue() {

Review Comment:
   I saw that too and decided it's out of scope. ;)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to