Remove javadoc from override method.

The javadoc incorrectly refers to BitSetBloomFilter as the argument.
This commit is contained in:
aherbert 2020-02-17 13:00:22 +00:00
parent 28b381008e
commit 2a0e867744
1 changed files with 0 additions and 8 deletions

View File

@ -59,14 +59,6 @@ public class BitSetBloomFilter extends AbstractBloomFilter {
this.bitSet = new BitSet();
}
/**
* Calculates the andCardinality with another BitSetBloomFilter. <p> This method takes
* advantage of internal structures of BitSetBloomFilter. </p>
*
* @param other the other BitSetBloomFilter.
* @return the cardinality of the result of {@code ( this AND other )}.
* @see #andCardinality(BloomFilter)
*/
@Override
public int andCardinality(final BloomFilter other) {
if (other instanceof BitSetBloomFilter) {