rootvector2 opened a new pull request, #695: URL: https://github.com/apache/commons-collections/pull/695
`SparseBloomFilter.merge(IndexExtractor)` adds every index to the backing `TreeSet` before its range check runs, so a rejected out-of-range index stays stored and corrupts later `cardinality()`/`contains()`/`asBitMapArray()` calls, fixed by validating each index before `add` the way `SimpleBloomFilter.merge` already does (found while comparing the two merge paths). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
