Skip to content

Commit

Permalink
Core: Replace deprecated Roaring64Bitmap#add call with addRange (#10350)
Browse files Browse the repository at this point in the history
  • Loading branch information
amogh-jahagirdar authored May 18, 2024
1 parent 2886ef4 commit 236f625
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 236f625

Please sign in to comment.