Skip to content

Commit 0282cac

Browse files
committed
Suppress PMD.CompareObjectsWithEquals warning
1 parent 29a1543 commit 0282cac

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/org/lmdbjava/ByteArrayProxy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ private ByteArrayProxy() {
5252
* @param o2 right operand (required)
5353
* @return as specified by {@link Comparable} interface
5454
*/
55+
@SuppressWarnings("PMD.CompareObjectsWithEquals")
5556
public static int compareArrays(final byte[] o1, final byte[] o2) {
5657
requireNonNull(o1);
5758
requireNonNull(o2);

0 commit comments

Comments
 (0)