Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Data/PreprocessingData.cs

    r16453 r16462  
    2828using HeuristicLab.Core;
    2929using HeuristicLab.Data;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131using HeuristicLab.Problems.DataAnalysis;
    3232
     
    3434
    3535  [Item("PreprocessingData", "Represents data used for preprocessing.")]
    36   [StorableClass]
     36  [StorableType("DDF0FC89-E180-47EB-B96E-CBD9E15D697E")]
    3737  public class PreprocessingData : NamedItem, IPreprocessingData {
    3838
     
    7373
    7474    [StorableConstructor]
    75     protected PreprocessingData(bool deserializing)
    76       : base(deserializing) { }
     75    protected PreprocessingData(StorableConstructorFlag _) : base(_) { }
    7776    [StorableHook(HookType.AfterDeserialization)]
    7877    private void AfterDeserialization() {
Note: See TracChangeset for help on using the changeset viewer.