Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/16/19 16:12:21 (5 years ago)
Author:
abeham
Message:

#2521: worked on refactoring PTSP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/StringConvertibleArray.cs

    r17226 r17253  
    2222#endregion
    2323
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
    26 using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Data {
     
    3737    protected StringConvertibleArray() : base() { }
    3838    protected StringConvertibleArray(int length) : base(length) { }
    39     protected StringConvertibleArray(T[] elements) : base(elements) { }
     39    protected StringConvertibleArray(T[] elements, bool @readonly = false) : base(elements, @readonly) { }
    4040
    4141    protected abstract bool Validate(string value, out string errorMessage);
Note: See TracChangeset for help on using the changeset viewer.