Skip to content

Commit

Permalink
Remove debug leaf printing
Browse files Browse the repository at this point in the history
  • Loading branch information
MajickTek committed Apr 19, 2022
1 parent ad76d8c commit 83d1700
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ private void walk(DefaultTreeModel dtm, DefaultMutableTreeNode root) {
for (int i = 0; i < cc; i++) {
DefaultMutableTreeNode child = (DefaultMutableTreeNode) dtm.getChild(root, i);
if (dtm.isLeaf(child)) {
System.out.println(child.toString() + " is a leaf");
VersionObject vo = (VersionObject) child.getUserObject();
String base = Paths.get(basePath, vo.version + ".jar").toString();
File file = new File(base);
Expand Down

0 comments on commit 83d1700

Please sign in to comment.