- Timestamp:
- 02/05/19 13:22:33 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/NamedIntervals.cs
r16586 r16588 14 14 [StorableClass] 15 15 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; 18 18 19 19 [Storable(Name = "StorableIntervalInformation")]
Note: See TracChangeset
for help on using the changeset viewer.