- Timestamp:
- 07/09/14 10:37:01 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/StatisticsView.cs
r10971 r11156 124 124 List<string> list; 125 125 var logic = Content.StatisticsLogic; 126 if (logic. IsType<double>(i)) {126 if (logic.VariableHasType<double>(i)) { 127 127 list = GetDoubleColumns(i); 128 } else if (logic. IsType<string>(i)) {128 } else if (logic.VariableHasType<string>(i)) { 129 129 list = GetStringColumns(i); 130 } else if (logic. IsType<DateTime>(i)) {130 } else if (logic.VariableHasType<DateTime>(i)) { 131 131 list = GetDateTimeColumns(i); 132 132 } else {
Note: See TracChangeset
for help on using the changeset viewer.