Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/17 15:17:35 (7 years ago)
Author:
pfleck
Message:

#2809: Removed StatisticsLogic.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Cleanup/HeuristicLab.DataPreprocessing/3.4/Content/StatisticsContent.cs

    r15274 r15283  
    3333    }
    3434
    35     [Storable]
    36     public StatisticsLogic StatisticsLogic { get; private set; }
    37 
    3835    #region Constructor, Cloning & Persistence
    39     public StatisticsContent(IFilteredPreprocessingData preprocessingData, StatisticsLogic statisticsLogic)
     36    public StatisticsContent(IFilteredPreprocessingData preprocessingData)
    4037      : base(preprocessingData) {
    41       StatisticsLogic = statisticsLogic;
    4238    }
    4339
    4440    public StatisticsContent(StatisticsContent original, Cloner cloner)
    4541      : base(original, cloner) {
    46       StatisticsLogic = cloner.Clone(original.StatisticsLogic);
    4742    }
    4843    public override IDeepCloneable Clone(Cloner cloner) {
     
    5651
    5752    public event DataPreprocessingChangedEventHandler Changed {
    58       add { StatisticsLogic.Changed += value; }
    59       remove { StatisticsLogic.Changed -= value; }
     53      add { PreprocessingData.Changed += value; }
     54      remove { PreprocessingData.Changed -= value; }
    6055    }
    6156  }
Note: See TracChangeset for help on using the changeset viewer.