- Timestamp:
- 09/14/12 18:58:15 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Core/3.3/Collections/ReadOnlyItemList.cs
r7259 r8660 48 48 [StorableConstructor] 49 49 protected ReadOnlyItemList(bool deserializing) : base(deserializing) { } 50 protected ReadOnlyItemList(ReadOnlyItemList<T> original, Cloner cloner) { 50 protected ReadOnlyItemList(ReadOnlyItemList<T> original, Cloner cloner) 51 : base(cloner.Clone((IItemList<T>)original.list)) { 51 52 cloner.RegisterClonedObject(original, this); 52 list = cloner.Clone((IItemList<T>)original.list);53 RegisterEvents();54 53 } 55 54 public ReadOnlyItemList() : base(new ItemList<T>()) { }
Note: See TracChangeset
for help on using the changeset viewer.