Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/01/19 14:36:32 (5 years ago)
Author:
dpiringe
Message:

#3026: renamed Component to JsonItem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.Manufacture/Converters/DummyConverter.cs

    r17281 r17283  
    88namespace HeuristicLab.Manufacture {
    99  public class DummyConverter : BaseConverter {
    10     public override void InjectData(IItem item, Component data) {
     10    public override void InjectData(IItem item, JsonItem data) {
    1111      // do nothing because the instance already exists and
    1212      // there are no values to inject
    1313    }
    1414
    15     public override Component ExtractData(IItem value) =>
    16       new Component() { Default = value.GetType().Name };
     15    public override JsonItem ExtractData(IItem value) =>
     16      new JsonItem() { Default = value.GetType().Name };
    1717  }
    1818}
Note: See TracChangeset for help on using the changeset viewer.