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.Data/3.3/StringValue.cs

    r16453 r16462  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Data {
    2929  [Item("StringValue", "Represents a string.")]
    30   [StorableClass]
     30  [StorableType("1091C8E5-4480-447C-8EB3-AA260C59976D")]
    3131  public class StringValue : Item, IComparable, IStringConvertibleValue {
    3232    public static new Image StaticItemImage {
     
    5656
    5757    [StorableConstructor]
    58     protected StringValue(bool deserializing) : base(deserializing) { }
     58    protected StringValue(StorableConstructorFlag _) : base(_) { }
    5959    protected StringValue(StringValue original, Cloner cloner)
    6060      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.