Changeset 17259
- Timestamp:
- 09/17/19 14:56:49 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Parameters/3.3/LookupParameter.cs
r17257 r17259 100 100 while (currentExecutionContext != null) { 101 101 IParameter param = null; 102 while (currentExecutionContext != null && (!currentExecutionContext.Parameters.TryGetValue(translatedName, out param) 103 || param is IContextParameter)) 102 while (currentExecutionContext != null && !currentExecutionContext.Parameters.TryGetValue(translatedName, out param)) 104 103 currentExecutionContext = currentExecutionContext.Parent; 105 104 if (currentExecutionContext == null) break;
Note: See TracChangeset
for help on using the changeset viewer.