Remove extra whitespace

This commit is contained in:
Gary Gregory 2024-10-03 15:42:53 -04:00
parent f92f427c71
commit 3db85e7ebc
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public interface BloomFilterExtractor {
if (bf[0] == null) { if (bf[0] == null) {
bf[0] = new SimpleBloomFilter( x.getShape()); bf[0] = new SimpleBloomFilter( x.getShape());
} }
return bf[0].merge( x ); return bf[0].merge(x);
}); });
return bf[0]; return bf[0];
} }