Changeset 5809 for trunk/sources/HeuristicLab.Core/3.3/Collections
- Timestamp:
- 03/23/11 01:09:38 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Core/3.3
- Property svn:ignore
-
old new 3 3 *.user 4 4 HeuristicLabCorePlugin.cs 5 *.vs10x
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Core/3.3/Collections/CheckedItemCollection.cs
r5445 r5809 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); -
trunk/sources/HeuristicLab.Core/3.3/Collections/CheckedItemList.cs
r5445 r5809 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.