mirror of https://github.com/apache/lucene.git
SOLR-6178: backout deprecation until we have a diff default
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1619172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
074456d308
commit
cac2292ce0
|
@ -320,9 +320,6 @@ Other Changes
|
||||||
|
|
||||||
* SOLR-6173: Fixed wrong failure message in TestDistributedSearch. (shalin)
|
* 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-5902: Corecontainer level mbeans are not exposed (noble)
|
||||||
|
|
||||||
* SOLR-6194: Allow access to DataImporter and DIHConfiguration from DataImportHandler.
|
* SOLR-6194: Allow access to DataImporter and DIHConfiguration from DataImportHandler.
|
||||||
|
|
|
@ -27,9 +27,8 @@ import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory for {@link JaspellLookup}
|
* Factory for {@link JaspellLookup}
|
||||||
* @deprecated Migrate to one of the newer suggesters which are much more RAM efficient.
|
* <b>Note:</b> This Suggester is not very RAM efficient.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
|
||||||
public class JaspellLookupFactory extends LookupFactory {
|
public class JaspellLookupFactory extends LookupFactory {
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(JaspellLookup.class);
|
private static final Logger LOG = LoggerFactory.getLogger(JaspellLookup.class);
|
||||||
private static final String FILENAME = "jaspell.dat";
|
private static final String FILENAME = "jaspell.dat";
|
||||||
|
|
Loading…
Reference in New Issue