This is an automated email from the ASF dual-hosted git repository. cpoerschke pushed a commit to branch branch_7_7 in repository https://gitbox.apache.org/repos/asf/lucene-solr.git The following commit(s) were added to refs/heads/branch_7_7 by this push: new 4f61cb0 LUCENE-8731: mark MultiTermAwareComponent interface as deprecated 4f61cb0 is described below commit 4f61cb047d1a3cc60bfbe8b53b6fddee6b647ddd Author: Christine Poerschke AuthorDate: Wed Mar 20 10:22:36 2019 +0000 LUCENE-8731: mark MultiTermAwareComponent interface as deprecated --- .../java/org/apache/lucene/analysis/util/MultiTermAwareComponent.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lucene/analysis/common/src/java/org/apache/lucene/analysis/util/MultiTermAwareComponent.java b/lucene/analysis/common/src/java/org/apache/lucene/analysis/util/MultiTermAwareComponent.java index 1c1c4c8..ca7e246 100644 --- a/lucene/analysis/common/src/java/org/apache/lucene/analysis/util/MultiTermAwareComponent.java +++ b/lucene/analysis/common/src/java/org/apache/lucene/analysis/util/MultiTermAwareComponent.java @@ -27,7 +27,10 @@ package org.apache.lucene.analysis.util; * characters, etc) * * @lucene.experimental + * + * @deprecated Removed from 8.0 onwards, please see LUCENE-8497 for replacement details. */ +@Deprecated public interface MultiTermAwareComponent { /** Returns an analysis component to handle analysis if multi-term queries. * The returned component must be a TokenizerFactory, TokenFilterFactory or CharFilterFactory.