- Timestamp:
- 02/28/20 16:23:01 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Parameters/3.3/OptionalConstrainedValueParameter.cs
r17317 r17461 21 21 22 22 using System; 23 using System.Collections.Generic; 23 24 using System.Drawing; 25 using System.Linq; 24 26 using HEAL.Attic; 25 27 using HeuristicLab.Collections; … … 168 170 #endregion 169 171 172 public void Populate(IEnumerable<IItem> items) { 173 ValidValues.Clear(); 174 ValidValues.UnionWith(items.OfType<T>()); 175 } 176 170 177 [StorableHook(HookType.AfterDeserialization)] 171 178 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.