You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2020/07/10 04:05:22 UTC

[lucene-solr] branch master updated: SOLR-13132: fix some small package visibility and javadoc glitches that were caught on backport by the java8/branch_8x precommit but slipped past the java11/master precommit

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

hossman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new c20501a  SOLR-13132: fix some small package visibility and javadoc glitches that were caught on backport by the java8/branch_8x precommit but slipped past the java11/master precommit
c20501a is described below

commit c20501a5044e55bb6bd35e926ed803bd77c38df2
Author: Chris Hostetter <ho...@apache.org>
AuthorDate: Thu Jul 9 21:05:13 2020 -0700

    SOLR-13132: fix some small package visibility and javadoc glitches that were caught on backport by the java8/branch_8x precommit but slipped past the java11/master precommit
---
 solr/core/src/java/org/apache/solr/search/facet/SweepCountAware.java | 4 ++--
 solr/core/src/java/org/apache/solr/search/facet/SweepDISI.java       | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/solr/core/src/java/org/apache/solr/search/facet/SweepCountAware.java b/solr/core/src/java/org/apache/solr/search/facet/SweepCountAware.java
index 3dd8376..bfc583f 100644
--- a/solr/core/src/java/org/apache/solr/search/facet/SweepCountAware.java
+++ b/solr/core/src/java/org/apache/solr/search/facet/SweepCountAware.java
@@ -61,8 +61,8 @@ interface SweepCountAware {
    * union of doc domains:
    * 
    * First, the driver passes this object as the param to {@link SweepCountAware#registerCounts(SegCounter)}, which
-   * calls {@link #map(int, int)} on "this" to map the static "allIdx" (allIdx < n) for each active backing domain to
-   * a transient "activeIdx" for counts corresponding to active domains (activeIdx < count(allIdx) <= n). (The return value
+   * calls {@link #map(int, int)} on "this" to map the static "allIdx" (allIdx &lt; n) for each active backing domain to
+   * a transient "activeIdx" for counts corresponding to active domains (activeIdx &lt; count(allIdx) &lt;= n). (The return value
    * of {@link SweepCountAware#registerCounts(SegCounter)} indicates to the "driver" the max "active counts" index (for
    * domains that contain the current doc).
    * 
diff --git a/solr/core/src/java/org/apache/solr/search/facet/SweepDISI.java b/solr/core/src/java/org/apache/solr/search/facet/SweepDISI.java
index 94c4261..c083c5d 100644
--- a/solr/core/src/java/org/apache/solr/search/facet/SweepDISI.java
+++ b/solr/core/src/java/org/apache/solr/search/facet/SweepDISI.java
@@ -25,7 +25,7 @@ import org.apache.lucene.search.DocIdSetIterator;
 import org.apache.solr.search.facet.SlotAcc.CountSlotAcc;
 import org.apache.solr.search.facet.SlotAcc.SweepCountAccStruct;
 
-public abstract class SweepDISI extends DocIdSetIterator implements SweepCountAware {
+abstract class SweepDISI extends DocIdSetIterator implements SweepCountAware {
 
   public final int size;
   final CountSlotAcc[] countAccs;