Skip to content

Commit

Permalink
fix: Rename SortedRanges.longSparseCapacity property to longSparseMax…
Browse files Browse the repository at this point in the history
…Capacity for consistency. (#6182)

Fixes #6181
  • Loading branch information
jcferretti authored Oct 8, 2024
1 parent 925c974 commit 7a01ac4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public final SortedRanges self() {
SortedRanges.class, "longDenseMaxCapacity", 256);

public static final int LONG_SPARSE_MAX_CAPACITY = Configuration.getInstance().getIntegerForClassWithDefault(
SortedRanges.class, "longSparseCapacity", 4096);
SortedRanges.class, "longSparseMaxCapacity", 4096);

public static final int INT_DENSE_MAX_CAPACITY = Configuration.getInstance().getIntegerForClassWithDefault(
SortedRanges.class, "intDenseMaxCapacity", arraySizeRoundingInt(2 * LONG_DENSE_MAX_CAPACITY));
Expand Down

0 comments on commit 7a01ac4

Please sign in to comment.