Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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/Content/CorrelationMatrixContent.cs

    r16453 r16462  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626using HeuristicLab.Problems.DataAnalysis;
    2727
    2828namespace HeuristicLab.DataPreprocessing {
    2929  [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")]
    30   [StorableClass]
     30  [StorableType("E6B5FD30-847E-4AA5-8638-9CD166E10C22")]
    3131  public class CorrelationMatrixContent : PreprocessingContent, IViewShortcut {
    3232    public static new Image StaticItemImage {
     
    6363
    6464    [StorableConstructor]
    65     protected CorrelationMatrixContent(bool deserializing)
    66       : base(deserializing) { }
     65    protected CorrelationMatrixContent(StorableConstructorFlag _) : base(_) { }
    6766    #endregion
    6867
Note: See TracChangeset for help on using the changeset viewer.