Skip to content

Commit

Permalink
Core: Replace deprecated Roaring64Bitmap#add call with addRange (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
amogh-jahagirdar authored and Sasank Pagolu committed Oct 27, 2024
1 parent 8b61959 commit 8f283c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void delete(long position) {

@Override
public void delete(long posStart, long posEnd) {
roaring64Bitmap.add(posStart, posEnd);
roaring64Bitmap.addRange(posStart, posEnd);
}

@Override
Expand Down

0 comments on commit 8f283c6

Please sign in to comment.