Skip to content

Commit f69a386

Browse files
committed
[bugfix] Do not attempt to close already closed collection after removing resources, avoids XMLDBException
1 parent 5bb8a9b commit f69a386

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

exist-core/src/main/java/org/exist/client/ClientFrame.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -740,12 +740,6 @@ private void removeAction(final ActionEvent ev) {
740740
}
741741
}
742742

743-
try {
744-
removeRootCollection.close();
745-
} catch (final XMLDBException e) {
746-
showErrorMessage(e.getMessage(), e);
747-
}
748-
749743
ClientAction.call(client::getResources, e -> showErrorMessage(e.getMessage(), e));
750744
};
751745
client.newClientThread("remove", removeTask).start();

0 commit comments

Comments
 (0)