Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11418


Ignore:
Timestamp:
10/06/14 13:36:37 (9 years ago)
Author:
bburlacu
Message:

#2257: Removed offending property value which had the unfortunate side effect of caching the manipulation result (returning it unchanged in further calls).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing/3.4/ProblemDataCreator.cs

    r11382 r11418  
    3232
    3333    private Dataset ExportedDataset {
    34       get { return exporteDataset ?? (exporteDataset = context.Data.ExportToDataset()); }
     34      get {
     35        return context.Data.ExportToDataset();
     36      }
    3537    }
    36     private Dataset exporteDataset;
    3738
    3839    private IList<ITransformation> Transformations { get { return context.Data.Transformations; } }
Note: See TracChangeset for help on using the changeset viewer.