You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ma...@apache.org on 2010/03/16 02:52:42 UTC

svn commit: r923542 - /lucene/solr/branches/solr/src/java/org/apache/solr/update/SolrIndexWriter.java

Author: markrmiller
Date: Tue Mar 16 01:52:42 2010
New Revision: 923542

URL: http://svn.apache.org/viewvc?rev=923542&view=rev
Log:
remove nocommits

Modified:
    lucene/solr/branches/solr/src/java/org/apache/solr/update/SolrIndexWriter.java

Modified: lucene/solr/branches/solr/src/java/org/apache/solr/update/SolrIndexWriter.java
URL: http://svn.apache.org/viewvc/lucene/solr/branches/solr/src/java/org/apache/solr/update/SolrIndexWriter.java?rev=923542&r1=923541&r2=923542&view=diff
==============================================================================
--- lucene/solr/branches/solr/src/java/org/apache/solr/update/SolrIndexWriter.java (original)
+++ lucene/solr/branches/solr/src/java/org/apache/solr/update/SolrIndexWriter.java Tue Mar 16 01:52:42 2010
@@ -166,7 +166,6 @@ public class SolrIndexWriter extends Ind
   }
 
   @Deprecated
-  // nocommit: remove?
   public SolrIndexWriter(String name, String path, DirectoryFactory dirFactory, boolean create, IndexSchema schema, SolrIndexConfig config) throws IOException {
     super(getDirectory(path, dirFactory, null), schema.getAnalyzer(), create, MaxFieldLength.LIMITED);
     init(name, schema, config);
@@ -175,7 +174,6 @@ public class SolrIndexWriter extends Ind
   /**
    * @deprecated
    */
-  // nocommit: remove?
   public SolrIndexWriter(String name, String path, boolean create, IndexSchema schema) throws IOException {
     super(getDirectory(path, null), schema.getAnalyzer(), create, MaxFieldLength.LIMITED);
     init(name, schema, null);
@@ -184,7 +182,6 @@ public class SolrIndexWriter extends Ind
   /**
    * @deprecated
    */
-  // nocommit: remove?
   public SolrIndexWriter(String name, String path, boolean create, IndexSchema schema, SolrIndexConfig config) throws IOException {
     super(getDirectory(path, config), schema.getAnalyzer(), create, MaxFieldLength.LIMITED);
     init(name, schema, config);