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


The following commit(s) were added to refs/heads/master by this push:
     new 142d53a  Remove trailing whitespace
142d53a is described below

commit 142d53a6a52f7389a5494b466b931c86f2d4a6b8
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Sun Mar 15 23:43:12 2020 +0000

    Remove trailing whitespace
---
 .../commons/collections4/bloomfilter/ArrayCountingBloomFilter.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/ArrayCountingBloomFilter.java
 
b/src/main/java/org/apache/commons/collections4/bloomfilter/ArrayCountingBloomFilter.java
index 3b292e8..d53df40 100644
--- 
a/src/main/java/org/apache/commons/collections4/bloomfilter/ArrayCountingBloomFilter.java
+++ 
b/src/main/java/org/apache/commons/collections4/bloomfilter/ArrayCountingBloomFilter.java
@@ -29,20 +29,20 @@ import 
org.apache.commons.collections4.bloomfilter.hasher.StaticHasher;
 /**
  * A counting Bloom filter using an array to track counts for each enabled bit
  * index.
- * 
+ *
  * <p>Any operation that results in negative counts or integer overflow of
  * counts will mark this filter as invalid. This transition is not reversible.
  * The operation is completed in full, no exception is raised and the state is
  * set to invalid. This allows the counts for the filter immediately prior to 
the
  * operation that created the invalid state to be recovered. See the 
documentation
  * in {@link #isValid()} for details.
- * 
+ *
  * <p>All the operations in the filter assume the counts are currently valid,
  * for example cardinality or contains operations. Behaviour of an invalid
  * filter is undefined. It will no longer function identically to a standard
  * Bloom filter that is the merge of all the Bloom filters that have been added
  * to and not later subtracted from the counting Bloom filter.
- * 
+ *
  * <p>The maximum supported number of items that can be stored in the filter is
  * limited by the maximum array size combined with the {@link Shape}. For
  * example an implementation using a {@link Shape} with a false-positive

Reply via email to