Replace 2x empty lines with a single one

This commit is contained in:
Gary D. Gregory 2024-12-26 09:26:02 -05:00
parent e87cc8277c
commit 8875dad1bf
5 changed files with 0 additions and 5 deletions

View File

@ -19,7 +19,6 @@ package org.apache.commons.collections4.bloomfilter;
import java.util.TreeMap;
import java.util.function.IntPredicate;
/**
* Some Bloom filter implementations use a count rather than a bit flag. The term {@code Cell} is used to
* refer to these counts and their associated index. This class is the equivalent of the index extractor except

View File

@ -330,7 +330,6 @@ public interface CountingBloomFilter extends BloomFilter<CountingBloomFilter>, C
}
}
/**
* Adds the specified CellExtractor to this Bloom filter.
*

View File

@ -61,7 +61,6 @@ public class FixedOrderComparatorTest extends AbstractComparatorTest<String> {
assertFalse(comparator.equals(null));
}
@Test
void expectFalseWhenFixedOrderComparatorIsComparedWithOtherObject() {
final FixedOrderComparator<Integer> comparator = new FixedOrderComparator<>();

View File

@ -31,7 +31,6 @@ import java.util.NoSuchElementException;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/**
* Test class for {@link CartesianProductIterator}.
*/

View File

@ -15,7 +15,6 @@
* limitations under the License.
*/
package org.apache.commons.collections4.map;
/**