mirror of https://github.com/apache/lucene.git
Fix javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1374715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
290355e80c
commit
8e0b7e14e3
|
@ -30,7 +30,7 @@ public abstract class FilterIterator<T> implements Iterator<T> {
|
|||
private T next = null;
|
||||
private boolean nextIsSet = false;
|
||||
|
||||
/** returns true, if this element should be returned by {@link next()}. */
|
||||
/** returns true, if this element should be returned by {@link #next()}. */
|
||||
protected abstract boolean predicateFunction(T object);
|
||||
|
||||
public FilterIterator(Iterator<T> baseIterator) {
|
||||
|
|
Loading…
Reference in New Issue