mirror of https://github.com/apache/lucene.git
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:
parent
202a3311b7
commit
f47d6eeefa
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue