Skip to content

Commit 2228018

Browse files
committed
2 parents f0cb3c9 + c292567 commit 2228018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/collections4/IterableUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ public Iterator<E> iterator() {
624624
return new LazyIteratorChain<E>() {
625625
@Override
626626
protected Iterator<? extends E> nextIterator(final int count) {
627-
if (IterableUtils.isEmpty(iterable)) {
627+
if (IterableUtils.isEmpty(iterable)) { //NOPMD: qualifier is needed here
628628
return null;
629629
}
630630
return iterable.iterator();

0 commit comments

Comments
 (0)