Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/20 11:58:38 (5 years ago)
Author:
dpiringe
Message:

#3026:

  • added readme JsonInterfaceReadMe.txt
  • removed dead code
  • fixed a bug in JsonItemConverter -> now the type comparison should work as intended
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Models/ValueLookupJsonItem.cs

    r17481 r17483  
    99namespace HeuristicLab.JsonInterface {
    1010  public class ValueLookupJsonItem : LookupJsonItem, IValueLookupJsonItem {
    11    
    1211    public IJsonItem ActualValue { get; set; }
    1312
     
    2019      var obj = base.GenerateJObject();
    2120      if(ActualValue != null) {
    22         var actualValue = ActualValue.GenerateJObject();
    23         obj.Add(nameof(IValueLookupJsonItem.ActualValue), actualValue);
     21        obj.Add(nameof(IValueLookupJsonItem.ActualValue), ActualValue.Path);
    2422      }
    2523      return obj;
Note: See TracChangeset for help on using the changeset viewer.