- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/PreprocessingContext.cs
r14332 r14927 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Optimization; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 28 28 using HeuristicLab.Problems.DataAnalysis; 29 29 30 30 namespace HeuristicLab.DataPreprocessing { 31 31 [Item("PreprocessingContext", "PreprocessingContext")] 32 [Storable Class]32 [StorableType("a051828e-2406-4efc-b2db-b47da57fa9cf")] 33 33 public class PreprocessingContext : NamedItem, IStorableContent { 34 34 -
branches/PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/PreprocessingTransformator.cs
r14843 r14927 68 68 preprocessingData.Undo(); 69 69 } 70 } 71 catch (Exception e) { 70 } catch (Exception e) { 72 71 preprocessingData.Undo(); 73 72 if (string.IsNullOrEmpty(errorMsg)) errorMsg = e.Message; 74 } 75 finally { 73 } finally { 76 74 preprocessingData.EndTransaction(); 77 75 }
Note: See TracChangeset
for help on using the changeset viewer.