no message

This commit is contained in:
2023-11-03 02:00:17 +03:00
parent e100cf2654
commit 2f53737c56
10 changed files with 33 additions and 77 deletions

View File

@@ -57,8 +57,10 @@ public class SapforTask extends DBObject {
DefaultMutableTreeNode child = null;
DefaultMutableTreeNode parent = null;
//--
for (SapforVersion_json version_json : versions) {
version_json.init(configurationRoot);
//-
child = new DefaultMutableTreeNode(version_json);
if (parent == null) {
root = child;
@@ -67,8 +69,10 @@ public class SapforTask extends DBObject {
parent.add(child);
parent = child;
}
//-
}
if (parent != null) {
for (SapforVersion_json version_json : variants) {
version_json.init(configurationRoot);
parent.add(new DefaultMutableTreeNode(version_json));