Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16982


Ignore:
Timestamp:
05/23/19 13:02:00 (5 years ago)
Author:
jkarder
Message:

#3008: fixed FindAll

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.DataPreprocessing.Views/3.4/DataGridContentView.cs

    r16565 r16982  
    411411        var foundIndices = new List<int>();
    412412        for (int idx = 0; idx < filteredRows.Length; ++idx) {
    413           var notFilteredThusFound = !filteredRows[idx];
    414           if (notFilteredThusFound) {
     413          if (filteredRows[idx]) {
    415414            foundIndices.Add(idx);
    416415          }
Note: See TracChangeset for help on using the changeset viewer.