- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.DataPreprocessing
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.DataPreprocessing merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing/3.4
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing/3.4/Data/FilteredPreprocessingData.cs
r15595 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Data; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Problems.DataAnalysis; 30 30 31 31 namespace HeuristicLab.DataPreprocessing { 32 32 [Item("FilteredPreprocessingData", "Represents filtered data used for preprocessing.")] 33 [Storable Class]33 [StorableType("26BAE57C-A102-483D-8A09-AEC7132FD837")] 34 34 public sealed class FilteredPreprocessingData : NamedItem, IFilteredPreprocessingData { 35 35 … … 60 60 61 61 [StorableConstructor] 62 private FilteredPreprocessingData(bool deserializing) 63 : base(deserializing) { } 62 private FilteredPreprocessingData(StorableConstructorFlag _) : base(_) { } 64 63 #endregion 65 64
Note: See TracChangeset
for help on using the changeset viewer.