Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lifepuzzlefun1 committed Jan 28, 2024
1 parent 5bbcbb3 commit 4620c7d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected LongComparableItem get(int index) {
}


private static final class ComparableStreamRecordBatch implements ComparableItem<Long> {
private static final class ComparableStreamRecordBatch implements LongComparableItem {
private final StreamRecordBatch recordBatch;

private ComparableStreamRecordBatch(StreamRecordBatch recordBatch) {
Expand Down Expand Up @@ -78,7 +78,7 @@ public boolean equals(Object obj) {

@Override
public int hashCode() {
return Objects.hash(recordBatch);
return recordBatch.hashCode();
}

@Override
Expand Down

0 comments on commit 4620c7d

Please sign in to comment.