Whitespace

This commit is contained in:
Gary Gregory 2024-10-19 11:19:26 -04:00
parent d3f5d7f6a8
commit f898f03192
1 changed files with 0 additions and 3 deletions

View File

@ -76,7 +76,6 @@ public abstract class LazyIteratorChain<E> implements Iterator<E> {
public boolean hasNext() {
updateCurrentIterator();
lastUsedIterator = currentIterator;
return currentIterator.hasNext();
}
@ -90,7 +89,6 @@ public abstract class LazyIteratorChain<E> implements Iterator<E> {
public E next() {
updateCurrentIterator();
lastUsedIterator = currentIterator;
return currentIterator.next();
}
@ -141,7 +139,6 @@ public abstract class LazyIteratorChain<E> implements Iterator<E> {
// before calling hasNext() or next() (although they shouldn't)
lastUsedIterator = currentIterator;
}
while (!currentIterator.hasNext() && !chainExhausted) {
final Iterator<? extends E> nextIterator = nextIterator(++callCounter);
if (nextIterator != null) {