mirror of https://github.com/apache/lucene.git
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
|
@ -94,7 +94,7 @@ public class FilterIndexReader extends IndexReader {
|
||||||
public FilterTermPositions(TermPositions in) { super(in); }
|
public FilterTermPositions(TermPositions in) { super(in); }
|
||||||
|
|
||||||
public int nextPosition() throws IOException {
|
public int nextPosition() throws IOException {
|
||||||
return ((TermPositions)in).nextPosition();
|
return ((TermPositions) this.in).nextPosition();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue