Skip to content

Commit

Permalink
Needs a Comparator too.
Browse files Browse the repository at this point in the history
  • Loading branch information
broneill committed Jan 16, 2025
1 parent 7073234 commit c9fdd96
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/cojen/tupl/table/MergeScanner.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,9 @@ public long estimateSize() {
public int characteristics() {
return NONNULL | ORDERED | SORTED | CONCURRENT;
}

@Override
public Comparator<R> getComparator() {
return mComparator;
}
}

0 comments on commit c9fdd96

Please sign in to comment.