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.Data/3.3/BoolMatrix.cs

    r3310 r3317  
    3939    public override IDeepCloneable Clone(Cloner cloner) {
    4040      BoolMatrix clone = new BoolMatrix(matrix);
     41      cloner.RegisterClonedObject(this, clone);
     42      clone.ReadOnlyView = ReadOnlyView;
    4143      clone.ColumnNames = new List<string>(ColumnNames);
    4244      clone.RowNames = new List<string>(RowNames);
    43       cloner.RegisterClonedObject(this, clone);
    4445      return clone;
    4546    }
Note: See TracChangeset for help on using the changeset viewer.