Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10609


Ignore:
Timestamp:
03/19/14 10:19:17 (10 years ago)
Author:
tsteinre
Message:

changed TransactionalPreprocessingData ctor order on code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransactionalPreprocessingData.cs

    r10586 r10609  
    5252    private int transactionDepth = 0;
    5353
    54     private TransactionalPreprocessingData(TransactionalPreprocessingData original, Cloner cloner)
    55       : base(original, cloner) {
     54    public TransactionalPreprocessingData(IDataAnalysisProblemData problemData)
     55      : base(problemData) {
    5656      undoHistory = new List<PDSnapshot>();
    5757    }
    5858
    59     public TransactionalPreprocessingData(IDataAnalysisProblemData problemData)
    60       : base(problemData) {
     59    private TransactionalPreprocessingData(TransactionalPreprocessingData original, Cloner cloner)
     60      : base(original, cloner) {
    6161      undoHistory = new List<PDSnapshot>();
    6262    }
Note: See TracChangeset for help on using the changeset viewer.