Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/05/19 13:22:33 (6 years ago)
Author:
chaider
Message:

#2971 Changed variableIntervals from ObservableDictionary to Dictionary

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/NamedIntervals.cs

    r16586 r16588  
    1414  [StorableClass]
    1515  public class NamedIntervals : Item {   
    16     ObservableDictionary<string, Interval> variableIntervals = new ObservableDictionary<string, Interval>();
    17     public ObservableDictionary<string, Interval> VariableIntervals => variableIntervals;
     16    Dictionary<string, Interval> variableIntervals = new Dictionary<string, Interval>();
     17    public Dictionary<string, Interval> VariableIntervals => variableIntervals;
    1818
    1919    [Storable(Name = "StorableIntervalInformation")]
Note: See TracChangeset for help on using the changeset viewer.