Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10944


Ignore:
Timestamp:
06/04/14 13:42:55 (10 years ago)
Author:
tsteinre
Message:
  • removed unnecessary ctor parameter from CopyColumnTransformation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/CopyColumnTransformation.cs

    r10940 r10944  
    2020#endregion
    2121
    22 using System.Collections.Generic;
    2322
     23using System.Linq;
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Core;
     
    5353      : base(original, cloner) {
    5454    }
    55     public CopyColumnTransformation(IEnumerable<string> allowedColumns)
    56       : base(allowedColumns) {
     55    public CopyColumnTransformation()
     56      : base(Enumerable.Empty<string>()) {
    5757      Parameters.Add(new ValueParameter<StringValue>(CopiedColumnNameParameterName, "Name for the copied column", new StringValue()));
    5858    }
Note: See TracChangeset for help on using the changeset viewer.