Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/17 11:41:43 (7 years ago)
Author:
gkronber
Message:

#2520

  • renamed StorableClass -> StorableType
  • changed persistence to use GUIDs instead of type names
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Optimization/3.3/RunCollectionModification/Calculator.cs

    r13368 r14711  
    3333namespace HeuristicLab.Optimization {
    3434
    35   [StorableClass("9E68B940-C444-4961-8B4B-A8C021E7FCBA")]
     35  [StorableType("9E68B940-C444-4961-8B4B-A8C021E7FCBA")]
    3636  public class Calculator : IDeepCloneable {
    3737
     
    214214      if (array is StringArray)
    215215        return ((StringArray)array)[index];
    216       throw new NotSupportedException(string.Format("Type {0} is not a supported array type", array.GetType().Name));
     216      throw new NotSupportedException(string.Format("MemberSelection {0} is not a supported array type", array.GetType().Name));
    217217    }
    218218    #endregion
Note: See TracChangeset for help on using the changeset viewer.