remove this isClosed check that we didn't have before and shouldn't need now

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-01-27 21:02:31 +00:00
parent ac664ba310
commit af77591d7a
1 changed files with 1 additions and 3 deletions

View File

@ -433,9 +433,7 @@ public class CoreContainer
try {
for (SolrCore core : cores.values()) {
try {
if (!core.isClosed()) {
core.close();
}
core.close();
} catch (Throwable t) {
SolrException.log(log, "Error shutting down core", t);
}