- Timestamp:
- 03/02/11 00:17:45 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Core/3.3/Collections
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Core/3.3/Collections/CheckedItemCollection.cs
r5445 r5584 80 80 : base(collection) { 81 81 checkedState = new Dictionary<T, bool>(); 82 foreach (var item in collection)82 foreach (var item in list) 83 83 if (!checkedState.ContainsKey(item)) 84 84 checkedState.Add(item, true); -
branches/DataAnalysis Refactoring/HeuristicLab.Core/3.3/Collections/CheckedItemList.cs
r5445 r5584 84 84 : base(collection) { 85 85 checkedState = new Dictionary<T, bool>(); 86 foreach (var item in collection) {86 foreach (var item in list) { 87 87 if (!checkedState.ContainsKey(item)) 88 88 checkedState.Add(item, true);
Note: See TracChangeset
for help on using the changeset viewer.