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 commit is contained in:
Chris Hostetter 2020-07-09 21:05:13 -07:00
parent 40e2122b5a
commit c20501a504
2 changed files with 3 additions and 3 deletions

View File

@ -61,8 +61,8 @@ interface SweepCountAware {
* union of doc domains: * union of doc domains:
* *
* First, the driver passes this object as the param to {@link SweepCountAware#registerCounts(SegCounter)}, which * 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 * 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 < count(allIdx) <= n). (The return value * 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 * of {@link SweepCountAware#registerCounts(SegCounter)} indicates to the "driver" the max "active counts" index (for
* domains that contain the current doc). * domains that contain the current doc).
* *

View File

@ -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.CountSlotAcc;
import org.apache.solr.search.facet.SlotAcc.SweepCountAccStruct; 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; public final int size;
final CountSlotAcc[] countAccs; final CountSlotAcc[] countAccs;