diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index a5df503d292..0c110cdf790 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -320,9 +320,6 @@ Other Changes * SOLR-6173: Fixed wrong failure message in TestDistributedSearch. (shalin) -* SOLR-6178, LUCENE-5775: Deprecate JaspellLookupFactory. (Uwe Schindler, - Mike McCandless) - * SOLR-5902: Corecontainer level mbeans are not exposed (noble) * SOLR-6194: Allow access to DataImporter and DIHConfiguration from DataImportHandler. diff --git a/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java b/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java index 239df296221..4662da1289e 100644 --- a/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java +++ b/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java @@ -27,9 +27,8 @@ import org.slf4j.LoggerFactory; /** * Factory for {@link JaspellLookup} - * @deprecated Migrate to one of the newer suggesters which are much more RAM efficient. + * Note: This Suggester is not very RAM efficient. */ -@Deprecated public class JaspellLookupFactory extends LookupFactory { private static final Logger LOG = LoggerFactory.getLogger(JaspellLookup.class); private static final String FILENAME = "jaspell.dat";