You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2014/08/20 19:31:09 UTC

svn commit: r1619172 - in /lucene/dev/trunk/solr: CHANGES.txt core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java

Author: hossman
Date: Wed Aug 20 17:31:08 2014
New Revision: 1619172

URL: http://svn.apache.org/r1619172
Log:
SOLR-6178: backout deprecation until we have a diff default

Modified:
    lucene/dev/trunk/solr/CHANGES.txt
    lucene/dev/trunk/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java

Modified: lucene/dev/trunk/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/CHANGES.txt?rev=1619172&r1=1619171&r2=1619172&view=diff
==============================================================================
--- lucene/dev/trunk/solr/CHANGES.txt (original)
+++ lucene/dev/trunk/solr/CHANGES.txt Wed Aug 20 17:31:08 2014
@@ -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.

Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java?rev=1619172&r1=1619171&r2=1619172&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java (original)
+++ lucene/dev/trunk/solr/core/src/java/org/apache/solr/spelling/suggest/jaspell/JaspellLookupFactory.java Wed Aug 20 17:31:08 2014
@@ -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.
+ * <b>Note:</b> 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";