Fix minor bug that snuck in with LUCENE-9952

This commit is contained in:
Greg Miller 2022-01-24 06:58:31 -08:00
parent 9e560c1af1
commit eaf3cb6739
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public class ConcurrentSortedSetDocValuesFacetCounts extends Facets {
// child:
childIt.next();
}
return getPathResult(dimConfig, dim, null, -dimOrd, childIt, topN);
return getPathResult(dimConfig, dim, null, dimOrd, childIt, topN);
}
}