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.Clients.Hive/3.3/Tasks/ItemTask.cs

    r16453 r16462  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Hive;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929using HeuristicLab.PluginInfrastructure;
    3030
    3131namespace HeuristicLab.Clients.Hive {
    3232  [Item("Item Task", "Represents a executable hive task which contains a HeuristicLab Item.")]
    33   [StorableClass]
     33  [StorableType("69EB65A5-9132-41B6-BE1D-60EDA46EF3C5")]
    3434  public abstract class ItemTask : NamedItem, ITask {
    3535    public virtual HiveTask CreateHiveTask() {
     
    7272
    7373    [StorableConstructor]
    74     protected ItemTask(bool deserializing) { }
     74    protected ItemTask(StorableConstructorFlag _) : base(_) { }
    7575    protected ItemTask(ItemTask original, Cloner cloner)
    7676      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.