Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/13/10 06:41:56 (14 years ago)
Author:
swagner
Message:

Implemented ReadOnlyView property for items (#969).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs

    r3280 r3317  
    3232    public RunCollection(int capacity) : base(capacity) { }
    3333    public RunCollection(IEnumerable<IRun> collection) : base(collection) { }
    34 
    35     public override IDeepCloneable Clone(Cloner cloner) {
    36       RunCollection clone = new RunCollection(this.Select(x => (IRun)cloner.Clone(x)));
    37       cloner.RegisterClonedObject(this, clone);
    38       return clone;
    39     }
    4034  }
    4135}
Note: See TracChangeset for help on using the changeset viewer.