Claudenw commented on a change in pull request #160:
URL:
https://github.com/apache/commons-collections/pull/160#discussion_r425789531
##########
File path:
src/main/java/org/apache/commons/collections4/bloomfilter/BitSetBloomFilter.java
##########
@@ -25,7 +25,7 @@
import org.apache.commons.collections4.bloomfilter.hasher.StaticHasher;
/**
- * A bloom filter using a Java BitSet to track enabled bits. This is a standard
+ * A bloom filter uses a Java BitSet to track enabled bits. This is a standard
Review comment:
BitSet is a specific class. The implementations in this library use
BitSet but it is not required. One could use long[] (without resorting to
using the BitSet class) or one could use other BitSet like implementations.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]