You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gs...@apache.org on 2022/01/24 15:00:16 UTC

[lucene] branch main updated: Fix minor bug that snuck in with LUCENE-9952

This is an automated email from the ASF dual-hosted git repository.

gsmiller pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new eaf3cb6  Fix minor bug that snuck in with LUCENE-9952
eaf3cb6 is described below

commit eaf3cb67397a5c360fa9d5f8da21f0eda6739be5
Author: Greg Miller <gs...@gmail.com>
AuthorDate: Mon Jan 24 06:58:31 2022 -0800

    Fix minor bug that snuck in with LUCENE-9952
---
 .../lucene/facet/sortedset/ConcurrentSortedSetDocValuesFacetCounts.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/facet/src/java/org/apache/lucene/facet/sortedset/ConcurrentSortedSetDocValuesFacetCounts.java b/lucene/facet/src/java/org/apache/lucene/facet/sortedset/ConcurrentSortedSetDocValuesFacetCounts.java
index 928da66..8d9238c 100644
--- a/lucene/facet/src/java/org/apache/lucene/facet/sortedset/ConcurrentSortedSetDocValuesFacetCounts.java
+++ b/lucene/facet/src/java/org/apache/lucene/facet/sortedset/ConcurrentSortedSetDocValuesFacetCounts.java
@@ -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);
     }
   }