Suppress SingularField in IteratorUtil

This commit is contained in:
Andreas Dangel
2022-01-28 11:29:30 +01:00
parent cdefdf240e
commit 3f2b1b031a

View File

@ -366,6 +366,7 @@ public final class IteratorUtil {
}
return new AbstractIterator<T>() {
@SuppressWarnings("PMD.SingularField") // false positive, see #3754
private int yielded = 0;
@Override