This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push:
new f92f427c7 Remove extra whitespace
f92f427c7 is described below
commit f92f427c71abbc42b17f3b204e8591d49dbadb18
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Oct 3 13:40:04 2024 -0400
Remove extra whitespace
---
.../apache/commons/collections4/bloomfilter/LayeredBloomFilterTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/test/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilterTest.java
b/src/test/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilterTest.java
index 3610a4317..d6da94f5b 100644
---
a/src/test/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilterTest.java
+++
b/src/test/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilterTest.java
@@ -156,7 +156,7 @@ public class LayeredBloomFilterTest extends
AbstractBloomFilterTest<LayeredBloom
* @param maxDepth The maximum depth of layers.
* @return An empty layered Bloom filter of the specified shape and depth.
*/
- public static LayeredBloomFilter<BloomFilter> fixed(final Shape shape,
final int maxDepth) {
+ public static LayeredBloomFilter<BloomFilter> fixed(final Shape shape,
final int maxDepth) {
return fixed(shape, maxDepth, () -> new SimpleBloomFilter(shape));
}