Skip to content

Commit

Permalink
Make BloomFilter.bitSize() public google#6923
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitPatil05 committed Feb 3, 2024
1 parent 6e2d0d8 commit 5427f40
Show file tree
Hide file tree
Showing 2 changed files with 276 additions and 136 deletions.
2 changes: 1 addition & 1 deletion android/guava/src/com/google/common/hash/BloomFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public long approximateElementCount() {

/** Returns the number of bits in the underlying bit array. */
@VisibleForTesting
long bitSize() {
public long bitSize() {
return bits.bitSize();
}

Expand Down

0 comments on commit 5427f40

Please sign in to comment.