Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/28/14 15:29:38 (10 years ago)
Author:
mleitner
Message:

Style fixes

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
Files:
2 edited

Legend:

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

    r10908 r10914  
    2828
    2929  [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")]
    30   public class CorrelationMatrixContent : Item, IViewShortcut
    31   {
     30  public class CorrelationMatrixContent : Item, IViewShortcut {
    3231    public DataAnalysisProblemData ProblemData { get; set; }
    3332
     
    3837    public CorrelationMatrixContent(CorrelationMatrixContent original, Cloner cloner)
    3938      : base(original, cloner) {
    40  
     39
    4140    }
    42  
     41
    4342    public static new Image StaticItemImage {
    4443      get { return HeuristicLab.Common.Resources.VSImageLibrary.Gradient; }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10908 r10914  
    3030    private int classifierVariableIndex = 0;
    3131
    32     public HistogramContent(IChartLogic chartlogic) :base(chartlogic) {
     32    public HistogramContent(IChartLogic chartlogic)
     33      : base(chartlogic) {
    3334      AllInOneMode = false;
    3435    }
     
    3839    }
    3940
    40     public int ClassifierVariableIndex
    41     {
     41    public int ClassifierVariableIndex {
    4242      get { return this.classifierVariableIndex; }
    4343      set { this.classifierVariableIndex = value; }
Note: See TracChangeset for help on using the changeset viewer.