Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 1 and Version 2 of ReviewHeuristicLab3.3.0CodeCore


Ignore:
Timestamp:
04/05/10 17:59:45 (14 years ago)
Author:
gkronber
Comment:

Added an issue with cloning of NamedItemCollections

Legend:

Unmodified
Added
Removed
Modified
  • ReviewHeuristicLab3.3.0CodeCore

    v1 v2  
    3131 * '''!NamedItemCollection''': {{{NamedItemCollection}}} should implement {{{IItem}}}, because then the {{{IItem}}} implementation could be removed from the derived classes {{{VariableCollection}}} and {{{ParameterCollection}}}.
    3232   * swagner: Done in r2790.
     33
     34== Reviewer: gkronber ==
     35 * Implementation of `Clone()` in `NamedItemCollection` assumes that any class extending `NamedItemCollection` has a constructor with one argument of type `IEnumerable<T>`. This cannot be enforced in `NamedItemCollection` and leads to exceptions if a constructor with this signature is not available.