Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/14 13:05:33 (10 years ago)
Author:
mleitner
Message:

Fix filterlogic

File:
1 edited

Legend:

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

    r10619 r10620  
    105105
    106106
    107         public bool[] Check(object constrainedMember)
     107        public bool[] Check()
    108108        {
    109109            bool[] result = new bool[ConstrainedValue.Rows];
     
    134134        }
    135135
    136         public bool[] Check(object constrainedMember, out string errorMessage)
     136        public bool[] Check(out string errorMessage)
    137137        {
    138138            errorMessage = string.Empty;
    139             return this.Check(constrainedMember);
     139            return this.Check();
    140140        }
    141141
Note: See TracChangeset for help on using the changeset viewer.