* 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:
parent
3bd9e813a9
commit
7d80ab10e0
1 changed files with 3 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue