remove unused try/finally

git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@377478 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2006-02-13 20:04:09 +00:00
parent 389c5e6125
commit ba5aa8eba0
1 changed files with 1 additions and 6 deletions

View File

@ -196,7 +196,7 @@ public final class SolrCore {
// this is for backward compatibility (and also the reason
// the sync block is needed)
core = this; // set singleton
try {
if (dataDir ==null) {
dataDir =SolrConfig.config.get("dataDir","data");
}
@ -227,11 +227,6 @@ public final class SolrCore {
} catch (IOException e) {
throw new RuntimeException(e);
}
} finally {
}
}
}