- Timestamp:
- 03/10/20 17:17:37 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/Heuristiclab.ConfigStarter/Program.cs
r17451 r17473 46 46 47 47 IJsonItem root = JsonItemConverter.Extract(alg); 48 var x = root.Children[0]; 49 root.Children.Remove(x); 50 x.Parent = null; 48 ActivateJsonItems(root); 49 //var x = root.Children[0]; 50 //root.Children.Remove(x); 51 //x.Parent = null; 51 52 52 53 … … 64 65 65 66 } 67 68 private static void ActivateJsonItems(IJsonItem item) { 69 item.Active = true; 70 if(item.Children != null) { 71 foreach (var x in item.Children) 72 ActivateJsonItems(x); 73 } 74 } 66 75 } 67 76 }
Note: See TracChangeset
for help on using the changeset viewer.