Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs

    r16528 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    3434using HeuristicLab.Core;
    3535using HeuristicLab.Persistence.Auxiliary;
    36 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     36using HEAL.Attic;
    3737using HeuristicLab.PluginInfrastructure;
    3838using Microsoft.CSharp;
     
    4141
    4242  [Item("ProgrammableOperator", "An operator that can be programmed for arbitrary needs.")]
    43   [StorableClass]
     43  [StorableType("741279E4-4C38-4D66-B9F1-03E0F8B47A78")]
    4444  public class ProgrammableOperator : Operator, IParameterizedNamedItem, IStorableContent, IProgrammableItem {
    4545
     
    164164
    165165    [StorableConstructor]
    166     protected ProgrammableOperator(bool deserializing)
    167       : base(deserializing) {
     166    protected ProgrammableOperator(StorableConstructorFlag _) : base(_) {
    168167      ProgrammableOperator.StaticInitialize();
    169168      Assemblies = defaultAssemblyDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
Note: See TracChangeset for help on using the changeset viewer.