Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3077


Ignore:
Timestamp:
03/17/10 01:40:13 (14 years ago)
Author:
swagner
Message:

Fixed bug in LookupParameter.LookupVariable (#919)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters/3.3/LookupParameter.cs

    r3075 r3077  
    110110      while ((scope != null) && !scope.Variables.ContainsKey(name))
    111111        scope = scope.Parent;
    112       return scope != null ? scope.Variables[actualName] : null;
     112      return scope != null ? scope.Variables[name] : null;
    113113    }
    114114    protected override IItem GetActualValue() {
Note: See TracChangeset for help on using the changeset viewer.