Changes to the GTree code to improve performance. Completely changed

GTreeNode base implementations and filtering code.
This commit is contained in:
ghidravore 2019-09-11 15:54:23 -04:00
parent 04f7366a62
commit 5c6b32714c
137 changed files with 2834 additions and 3081 deletions

View file

@ -35,7 +35,7 @@ public class TreeTestUtils {
if (text.equals(node.getName())) {
return node.getTreePath();
}
List<GTreeNode> allChildren = node.getAllChildren();
List<GTreeNode> allChildren = node.getChildren();
for (GTreeNode childNode : allChildren) {
TreePath treePath = findPathToText(tree, childNode, text);
if (treePath != null) {