Whitespace

This commit is contained in:
Gary Gregory 2024-10-19 14:54:17 -04:00
parent 2673e5dfae
commit 77e10668ab
1 changed files with 3 additions and 0 deletions

View File

@ -35,10 +35,13 @@ public class FilterIterator<E> implements Iterator<E> {
/** The iterator being used */
private Iterator<? extends E> iterator;
/** The predicate being used */
private Predicate<? super E> predicate;
/** The next object in the iteration */
private E nextObject;
/** Whether the next object has been calculated yet */
private boolean nextObjectSet;