mirror of https://github.com/apache/lucene.git
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:
parent
ac664ba310
commit
af77591d7a
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue