From c20501a5044e55bb6bd35e926ed803bd77c38df2 Mon Sep 17 00:00:00 2001 From: Chris Hostetter Date: Thu, 9 Jul 2020 21:05:13 -0700 Subject: [PATCH] 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 --- .../java/org/apache/solr/search/facet/SweepCountAware.java | 4 ++-- .../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 3dd83767020..bfc583f009f 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 < n) for each active backing domain to + * a transient "activeIdx" for counts corresponding to active domains (activeIdx < count(allIdx) <= 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 94c4261e197..c083c5db0ec 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;