This is an automated email from the ASF dual-hosted git repository. aherbert pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git.
from 39f0955 Removed spurious javadoc tag. new 66b418f Update DynamicHasher to have a specialised iterator when empty. new 55cb720 Remove HashFunctionIdentity comparators. new 6215948 Hit all edge cases in the Shape.equals method. new 4ecffb5 Test getProvider() is Apache Commons Collections. new 0f78a9c Test edge case in SetOperations when shapes are different. new 6ad69be Increase coverage in CountingBloomFilter test. The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../bloomfilter/AbstractBloomFilter.java | 3 + .../bloomfilter/CountingBloomFilter.java | 32 +++- .../bloomfilter/hasher/DynamicHasher.java | 39 +++-- .../bloomfilter/hasher/HashFunctionIdentity.java | 37 +--- .../bloomfilter/hasher/HashFunctionValidator.java | 61 +++++++ .../collections4/bloomfilter/hasher/Shape.java | 6 +- .../bloomfilter/hasher/StaticHasher.java | 7 +- .../bloomfilter/hasher/function/MD5Cyclic.java | 3 +- .../bloomfilter/CountingBloomFilterTest.java | 138 +++++++++------ .../bloomfilter/SetOperationsTest.java | 20 +++ .../bloomfilter/hasher/CommonComparatorTest.java | 161 ------------------ .../bloomfilter/hasher/DeepComparatorTest.java | 188 --------------------- .../bloomfilter/hasher/DynamicHasherTest.java | 21 ++- .../hasher/HashFuctionValidatorTest.java | 120 +++++++++++++ .../collections4/bloomfilter/hasher/ShapeTest.java | 21 ++- .../bloomfilter/hasher/StaticHasherTest.java | 6 +- .../bloomfilter/hasher/function/MD5CyclicTest.java | 1 + .../hasher/function/Murmur128x86CyclicTest.java | 1 + .../hasher/function/Murmur32x86IterativeTest.java | 1 + .../hasher/function/ObjectsHashIterativeTest.java | 1 + 20 files changed, 395 insertions(+), 472 deletions(-) create mode 100644 src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunctionValidator.java delete mode 100644 src/test/java/org/apache/commons/collections4/bloomfilter/hasher/CommonComparatorTest.java delete mode 100644 src/test/java/org/apache/commons/collections4/bloomfilter/hasher/DeepComparatorTest.java create mode 100644 src/test/java/org/apache/commons/collections4/bloomfilter/hasher/HashFuctionValidatorTest.java