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.Clients.OKB/3.3/RunCreation/SingleObjectiveOKBSolution.cs

    r13693 r14927  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HeuristicLab.Persistence;
    2525using HeuristicLab.Persistence.Default.Xml;
    2626using System;
     
    2929namespace HeuristicLab.Clients.OKB.RunCreation {
    3030  [Item("OKB Solution (single-objective)", "")]
    31   [StorableClass]
     31  [StorableType("c3fb78fc-f439-48f7-a9c9-3eabb84a16da")]
    3232  public sealed class SingleObjectiveOKBSolution : OKBSolution {
    3333    [Storable]
     
    100100    private void OnQualityChanged() {
    101101      var handler = QualityChanged;
    102       if  (handler != null) handler(this, EventArgs.Empty);
     102      if (handler != null) handler(this, EventArgs.Empty);
    103103    }
    104104  }
Note: See TracChangeset for help on using the changeset viewer.