* Remove call to gui.dispose() as it causes helma shutdown hook to hang on windows

- see http://helma.org/bugs/show_bug.cgi?id=586#c2
This commit is contained in:
hns 2008-04-07 12:25:02 +00:00
parent 3bd9e813a9
commit 7d80ab10e0

View file

@ -116,7 +116,9 @@ public class HelmaDebugger extends Dim implements TreeSelectionListener {
public void dispose() {
super.dispose();
gui.setVisible(false);
gui.dispose();
// Calling dispose() on the gui causes shutdown hook to hang on windows -
// see http://helma.org/bugs/show_bug.cgi?id=586#c2
// gui.dispose();
}
class DebuggerTreeNode extends DefaultMutableTreeNode {