harmless qualification of variable

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150124 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2003-11-06 15:30:57 +00:00
parent 97232bf114
commit e0c4641ac2
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ public class FilterIndexReader extends IndexReader {
return in.read(docs, freqs);
}
public boolean skipTo(int i) throws IOException { return in.skipTo(i); }
public void close() throws IOException { in.close(); }
public void close() throws IOException { in.close(); }
}
/** Base class for filtering {@link TermPositions} implementations. */
@ -94,7 +94,7 @@ public class FilterIndexReader extends IndexReader {
public FilterTermPositions(TermPositions in) { super(in); }
public int nextPosition() throws IOException {
return ((TermPositions)in).nextPosition();
return ((TermPositions) this.in).nextPosition();
}
}