Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/03/10 01:32:32 (13 years ago)
Author:
mkommend
Message:

Corrected some cloning errors in the Core plugin (ticket #922).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Core/3.3/Collections/ConstraintCollection.cs

    r4668 r4711  
    3131    protected ConstraintCollection(bool deserializing) : base(deserializing) { }
    3232    protected ConstraintCollection(ConstraintCollection original, Cloner cloner) : base(original, cloner) { }
     33    public override IDeepCloneable Clone(Cloner cloner) { return new ConstraintCollection(this, cloner); }
    3334    public ConstraintCollection() : base() { }
    3435    public ConstraintCollection(int capacity) : base(capacity) { }
Note: See TracChangeset for help on using the changeset viewer.