in src/main/java/org/apache/sling/commons/html/HtmlIterator.java [75:85]
public HtmlElement next() {
if (current == null && !eof) {
seek();
}
if (current == null || eof) {
throw new NoSuchElementException();
}
HtmlElement response = current;
current = null;
return response;
}