mirror of https://github.com/apache/lucene.git
LUCENE-5952: remove dead writer.version parsing code
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1626551 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f8a74cb587
commit
4950230f32
|
@ -75,8 +75,6 @@ public class CreateIndexTask extends PerfTask {
|
|||
public CreateIndexTask(PerfRunData runData) {
|
||||
super(runData);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static IndexDeletionPolicy getIndexDeletionPolicy(Config config) {
|
||||
String deletionPolicyName = config.get("deletion.policy", "org.apache.lucene.index.KeepOnlyLastCommitDeletionPolicy");
|
||||
|
@ -101,12 +99,6 @@ public class CreateIndexTask extends PerfTask {
|
|||
|
||||
public static IndexWriterConfig createWriterConfig(Config config, PerfRunData runData, OpenMode mode, IndexCommit commit) {
|
||||
@SuppressWarnings("deprecation")
|
||||
Version version;
|
||||
try {
|
||||
version = Version.parseLeniently(config.get("writer.version", Version.LATEST.toString()));
|
||||
} catch (ParseException pe) {
|
||||
throw new IllegalArgumentException(pe);
|
||||
}
|
||||
IndexWriterConfig iwConf = new IndexWriterConfig(runData.getAnalyzer());
|
||||
iwConf.setOpenMode(mode);
|
||||
IndexDeletionPolicy indexDeletionPolicy = getIndexDeletionPolicy(config);
|
||||
|
|
Loading…
Reference in New Issue