From 4ab19a6fde1b3162777be72f81f8731f904c7c64 Mon Sep 17 00:00:00 2001
From: Gary Gregory
Date: Fri, 30 Jun 2023 09:52:21 -0400
Subject: [PATCH] Fix Javadoc
---
.../commons/collections4/bloomfilter/LayeredBloomFilter.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java b/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
index 307173db79..fee015f951 100644
--- a/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
+++ b/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
@@ -32,6 +32,7 @@
*
* In short, Layered Bloom filter contains several bloom filters arranged in
* layers.
+ *
*
* - When membership in the filter is checked each layer in turn is checked
* and if a match is found {@code true} is returned.
@@ -43,7 +44,6 @@
* The net result is that the layered Bloom filter can be populated with more
* items than the Shape would indicate and yet still return a false positive
* rate in line with the Shape and not the over population.
- *
*
* This implementation uses a LayerManager to handle the manipulation of the
* layers.