File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
facet/src/java/org/apache/lucene/facet/taxonomy Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ API Changes
34
34
35
35
* LUCENE-10381: Require users to provide FacetsConfig for SSDV faceting. (Greg Miller)
36
36
37
+ * LUCENE-10368: IntTaxonomyFacets has been deprecated and is no longer a supported extension point
38
+ for user-created faceting implementations. (Greg Miller)
39
+
37
40
New Features
38
41
---------------------
39
42
Original file line number Diff line number Diff line change 28
28
import org .apache .lucene .facet .LabelAndValue ;
29
29
import org .apache .lucene .facet .TopOrdAndIntQueue ;
30
30
31
- /** Base class for all taxonomy-based facets that aggregate to a per-ords int[]. */
31
+ /**
32
+ * Base class for all taxonomy-based facets that aggregate to a per-ords int[].
33
+ *
34
+ * @deprecated Visibility of this class will be reduced to pkg-private in a future version. This
35
+ * class is meant to host common code as an internal implementation detail to {@link
36
+ * FastTaxonomyFacetCounts} and {@link TaxonomyFacetSumIntAssociations},and is not intended as
37
+ * an extension point for user-created {@code Facets} implementations. If your code is relying
38
+ * on this, please migrate necessary functionality down into your own class.
39
+ */
40
+ @ Deprecated
32
41
public abstract class IntTaxonomyFacets extends TaxonomyFacets {
33
42
34
43
/**
You can’t perform that action at this time.
0 commit comments