Merge remote-tracking branch

'origin/GP-6238_d-millar_pending_not_abstract' (Closes #8712)
This commit is contained in:
Ryan Kurtz
2025-12-18 13:01:30 -05:00

View File

@@ -308,6 +308,7 @@ public class ObjectTreeModel implements DisplaysModified {
}
String key = p.key(pos);
AbstractNode matched = children().stream()
.filter(c -> c instanceof AbstractNode)
.map(c -> (AbstractNode) c)
.filter(c -> key.equals(c.getValue().getEntryKey()))
.findFirst()