Changeset 17843 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JsonTemplateGenerator.cs
- Timestamp:
- 02/23/21 16:36:44 (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JsonTemplateGenerator.cs
r17828 r17843 73 73 private static void PopulateJsonItems(IJsonItem item, IList<IJsonItem> jsonItems) { 74 74 foreach(var x in item) { 75 if (x.Active && !(x is EmptyJsonItem) ) {75 if (x.Active && !(x is EmptyJsonItem) && !(x is UnsupportedJsonItem)) { 76 76 jsonItems.Add(x); 77 77 }
Note: See TracChangeset
for help on using the changeset viewer.