this is never called, but should be the other way round

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@882807 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2009-11-21 00:47:49 +00:00
parent f3b9bea18d
commit 52d8057021
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ public final class NumericRangeQuery<T extends Number> extends MultiTermQuery {
@Override
protected boolean endEnum() {
assert false; // should never be called
return (currentTerm != null);
return (currentTerm == null);
}
/**