Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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.Random/3.3/FastRandom.cs

    r8928 r16462  
    22using HeuristicLab.Common;
    33using HeuristicLab.Core;
    4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     4using HEAL.Fossil;
    55
    66namespace HeuristicLab.Random {
     
    4343  ///   
    4444  /// </summary>
    45   [StorableClass]
     45  [StorableType("BC86BFF3-80B5-4C77-9D8C-B29576032634")]
    4646  public sealed class FastRandom : Item, IRandom {
    4747    // The +1 ensures NextDouble doesn't generate 1.0
     
    5959    /// <param name="deserializing">true, if the constructor is called during deserialization.</param>
    6060    [StorableConstructor]
    61     private FastRandom(bool deserializing) : base(deserializing) { }
     61    private FastRandom(StorableConstructorFlag _) : base(_) { }
    6262
    6363    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.