Changeset 18077 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JsonItemConverter.cs
- Timestamp:
- 11/04/21 17:04:01 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JsonItemConverter.cs
r17843 r18077 53 53 if (item != null && !InjectCache.ContainsKey(item.GetHashCode())) { 54 54 IJsonItemConverter converter = GetConverter(item.GetType()); 55 if (converter != null) converter.Inject(item, data, root);55 if (converter != null) converter.Inject(item, data, root); 56 56 InjectCache.Add(item.GetHashCode(), data); 57 57 }
Note: See TracChangeset
for help on using the changeset viewer.