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.Optimization/3.3/RunCollectionModification/RunCollectionSorter.cs

    r16453 r16462  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    2625using HeuristicLab.Common;
    2726using HeuristicLab.Core;
    2827using HeuristicLab.Data;
    2928using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3130
    3231namespace HeuristicLab.Optimization {
    3332  [Item("RunCollection Sorter", "Sorts a run collection according the specified key variable.")]
    34   [StorableClass]
     33  [StorableType("0F64D1D2-8934-4697-B997-A8072ADB4CF3")]
    3534  public class RunCollectionSorter : ParameterizedNamedItem, IRunCollectionModifier {
    3635
     
    4847    #region Construction & Cloning
    4948    [StorableConstructor]
    50     protected RunCollectionSorter(bool deserializing) : base(deserializing) { }
     49    protected RunCollectionSorter(StorableConstructorFlag _) : base(_) { }
    5150    protected RunCollectionSorter(RunCollectionSorter original, Cloner cloner)
    5251      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.