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:
Uwe Schindler 2012-08-19 09:19:49 +00:00
parent 290355e80c
commit 8e0b7e14e3
1 changed files with 1 additions and 1 deletions

View File

@ -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) {