aherbert commented on code in PR #335:
URL:
https://github.com/apache/commons-collections/pull/335#discussion_r1003575545
##########
src/main/java/org/apache/commons/collections4/bloomfilter/BitCountProducer.java:
##########
@@ -57,12 +88,22 @@ static BitCountProducer from(IndexProducer idx) {
public boolean forEachCount(BitCountConsumer consumer) {
return idx.forEachIndex(i -> consumer.test(i, 1));
}
+
+ @Override
+ public int[] asIndexArray() {
Review Comment:
I presume this change is required otherwise the test suite fails.
--
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]