Merge remote-tracking branch 'origin/GP-0-dragonmacher-test-fixes-3-27-25'

This commit is contained in:
Ryan Kurtz 2025-03-27 11:03:05 -04:00
commit 2b99f5d15e

View file

@ -245,6 +245,9 @@ public class OrganizationNode extends SymbolTreeNode {
private void checkForTooManyNodes() { private void checkForTooManyNodes() {
SymbolTreeRootNode root = (SymbolTreeRootNode) getRoot(); SymbolTreeRootNode root = (SymbolTreeRootNode) getRoot();
if (root == null) {
return;
}
int reOrgLimit = root.getReorganizeLimit(); int reOrgLimit = root.getReorganizeLimit();
if (getChildCount() < reOrgLimit) { if (getChildCount() < reOrgLimit) {
return; return;