- Timestamp:
- 05/16/08 00:53:45 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/Scope.cs
r63 r261 172 172 else { 173 173 for (int i = 0; i < mySubScopes.Count; i++) { 174 IScope s = GetScope(guid);174 IScope s = mySubScopes[i].GetScope(guid); 175 175 if (s != null) return s; 176 176 } … … 182 182 else { 183 183 for (int i = 0; i < mySubScopes.Count; i++) { 184 IScope s = GetScope(name);184 IScope s = mySubScopes[i].GetScope(name); 185 185 if (s != null) return s; 186 186 }
Note: See TracChangeset
for help on using the changeset viewer.