mirror of
https://github.com/apache/lucene.git
synced 2025-03-06 00:09:28 +00:00
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:
parent
97232bf114
commit
e0c4641ac2
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user