Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/17/19 14:56:49 (5 years ago)
Author:
abeham
Message:

#2521: fixed bug in lookup paramater introduced in refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Parameters/3.3/LookupParameter.cs

    r17257 r17259  
    100100      while (currentExecutionContext != null) {
    101101        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))
    104103          currentExecutionContext = currentExecutionContext.Parent;
    105104        if (currentExecutionContext == null) break;
Note: See TracChangeset for help on using the changeset viewer.