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

@ -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();
} }
} }