Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/11 01:52:19 (13 years ago)
Author:
swagner
Message:

Prevented disappearing of runs in an optimizer when moving the optimizer up or down in an experiment (#1445)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs

    r5445 r5928  
    9393
    9494    void ICollection<T>.Clear() {
     95      throw new NotSupportedException();
     96    }
     97
     98    void IObservableList<T>.Reverse() {
     99      throw new NotSupportedException();
     100    }
     101    void IObservableList<T>.Reverse(int index, int count) {
    95102      throw new NotSupportedException();
    96103    }
Note: See TracChangeset for help on using the changeset viewer.