LUCENE-6001: null check was backwards

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662733 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2015-02-27 15:57:06 +00:00
parent 3cf40619ca
commit 5f45083f67
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class DrillSidewaysScorer extends BulkScorer {
}
long drillDownAdvancedCost = 0;
if (numDims > 1 && dims[1].disi == null) {
if (numDims > 1 && dims[1].disi != null) {
drillDownAdvancedCost = dims[1].disi.cost();
}