typo in ValueSourceScorer for checking deleted docs

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@775409 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-05-16 02:27:19 +00:00
parent 202a3311b7
commit f47d6eeefa
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class ValueSourceScorer extends Scorer {
}
public boolean matches(int doc) {
return (!checkDeletes || !reader.isDeleted(maxDoc)) && matchesValue(doc);
return (!checkDeletes || !reader.isDeleted(doc)) && matchesValue(doc);
}
public boolean matchesValue(int doc) {