This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 2a0e867744a5c52f105992e2ac42ecfe808c92ba Author: aherbert <a.herb...@sussex.ac.uk> AuthorDate: Mon Feb 17 13:00:22 2020 +0000 Remove javadoc from override method. The javadoc incorrectly refers to BitSetBloomFilter as the argument. --- .../commons/collections4/bloomfilter/BitSetBloomFilter.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/BitSetBloomFilter.java b/src/main/java/org/apache/commons/collections4/bloomfilter/BitSetBloomFilter.java index e7bb69b..e3adbaa 100644 --- a/src/main/java/org/apache/commons/collections4/bloomfilter/BitSetBloomFilter.java +++ b/src/main/java/org/apache/commons/collections4/bloomfilter/BitSetBloomFilter.java @@ -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) {