fixed small gtree call that needed to be in swing thread

This commit is contained in:
ghidravore
2020-08-21 11:44:27 -04:00
parent 0e2f48607a
commit 723214d48a
@@ -41,7 +41,7 @@ public abstract class GTreeLazyNode extends GTreeNode {
*/ */
public void unloadChildren() { public void unloadChildren() {
if (isLoaded()) { if (isLoaded()) {
doSetChildrenAndFireEvent(null); setChildren(null);
} }
} }