You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2015/09/29 15:33:31 UTC

svn commit: r1705859 - /lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/SpellCheckComponent.java

Author: noble
Date: Tue Sep 29 13:33:31 2015
New Revision: 1705859

URL: http://svn.apache.org/viewvc?rev=1705859&view=rev
Log:
SOLR-8104: removed nocommit

Modified:
    lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/SpellCheckComponent.java

Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/SpellCheckComponent.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/SpellCheckComponent.java?rev=1705859&r1=1705858&r2=1705859&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/SpellCheckComponent.java (original)
+++ lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/SpellCheckComponent.java Tue Sep 29 13:33:31 2015
@@ -652,7 +652,6 @@ public class SpellCheckComponent extends
           if (cfg instanceof NamedList) {
             addSpellChecker(core, hasDefault, (NamedList) cfg);
           } else if (cfg instanceof Map) {
-            System.out.println("##mapspellchecker");//todo nocommit
             addSpellChecker(core, hasDefault, new NamedList((Map) cfg));
           } else if (cfg instanceof List) {
             for (Object o : (List) cfg) {