Removed a line of dead code.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150150 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug Cutting 2003-12-01 18:23:47 +00:00
parent 32f3d1794a
commit 5bf1b92b14
1 changed files with 0 additions and 1 deletions

View File

@ -99,7 +99,6 @@ public final class StopFilter extends TokenFilter {
for (Token token = input.next(); token != null; token = input.next()) {
if (table.get(token.termText) == null) {
token.setPositionIncrement(position);
position = 1;
return token;
}