Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs

    r14185 r14927  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.SequentialEngine {
     
    3030  /// Engine for sequential execution of algorithms.
    3131  /// </summary>
    32   [StorableClass]
     32  [StorableType("ba09d079-10fe-4737-a816-6fbda5a22dd7")]
    3333  [Item("Sequential Engine", "Engine for sequential execution of algorithms.")]
    3434  public class SequentialEngine : Engine {
     
    5959          try {
    6060            next = operation.Operator.Execute((IExecutionContext)operation, cancellationToken);
    61           }
    62           catch (Exception ex) {
     61          } catch (Exception ex) {
    6362            ExecutionStack.Push(operation);
    6463            if (ex is OperationCanceledException) throw ex;
Note: See TracChangeset for help on using the changeset viewer.