mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
Changes to the GTree code to improve performance. Completely changed
GTreeNode base implementations and filtering code.
This commit is contained in:
parent
04f7366a62
commit
5c6b32714c
137 changed files with 2834 additions and 3081 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue