Skip to content

Commit 0e6538e

Browse files
committed
Fix
1 parent ed305ae commit 0e6538e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/scalar/db/transaction/consensuscommit/CommitHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ public boolean equals(Object o) {
848848
return Iterables.elementsEqual(getSet, that.getSet)
849849
&& Iterables.elementsEqual(scanSet, that.scanSet)
850850
&& Iterables.elementsEqual(scannerSet, that.scannerSet)
851-
&& Iterables.elementsEqual(updatedRecordKeys, that.updatedRecordKeys);
851+
&& Objects.equals(updatedRecordKeys, that.updatedRecordKeys);
852852
}
853853

854854
@Override

0 commit comments

Comments
 (0)