mirror of https://github.com/apache/lucene.git
remove nocommits
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/branches/solr@923542 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0c13e8c859
commit
3730a0b0ba
|
@ -166,7 +166,6 @@ public class SolrIndexWriter extends IndexWriter {
|
|||
}
|
||||
|
||||
@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 IndexWriter {
|
|||
/**
|
||||
* @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 IndexWriter {
|
|||
/**
|
||||
* @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);
|
||||
|
|
Loading…
Reference in New Issue