区域树筛选bug

This commit is contained in:
sxu 2025-03-21 14:27:21 +08:00
parent 723aa6bb8f
commit c032249e5c
1 changed files with 2 additions and 2 deletions

View File

@ -59,10 +59,10 @@ public class TreeNodeUtil {
Long id = var6[i];
for(int j = 0; j < length; ++j) {
t = (BaseTreeNode)listNodes.get(i);
t = (BaseTreeNode)listNodes.get(j);
if (id.equals(t.getId())) {
treeNodes.add((T) t);
nodeIndex[i] = 1;
nodeIndex[j] = 1;
}
}
}