fixed accidental checkin of debug code.

This commit is contained in:
ghidravore 2020-06-26 17:10:00 -04:00
parent 0bfcb5b8cd
commit 777bcbef17

View File

@ -258,10 +258,6 @@ public abstract class GTreeNode extends CoreGTreeNode implements Comparable<GTre
* @param childList this list of nodes to be set as children of this node
*/
public void setChildren(List<GTreeNode> childList) {
System.out.println("Setting children for node: " + getTreePath());
for (GTreeNode child : childList) {
System.out.println("\tchild name: " + child.getName());
}
Swing.runNow(() -> doSetChildrenAndFireEvent(childList));
}