We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5cde1 commit c292567Copy full SHA for c292567
src/main/java/org/apache/commons/collections4/IterableUtils.java
@@ -624,7 +624,7 @@ public Iterator<E> iterator() {
624
return new LazyIteratorChain<E>() {
625
@Override
626
protected Iterator<? extends E> nextIterator(final int count) {
627
- if (IterableUtils.isEmpty(iterable)) {
+ if (IterableUtils.isEmpty(iterable)) { //NOPMD: qualifier is needed here
628
return null;
629
}
630
return iterable.iterator();
0 commit comments