Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/10 18:54:26 (14 years ago)
Author:
swagner
Message:

Fixed bug in LookupParameter.GetActualValue (#919)

File:
1 edited

Legend:

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

    r3080 r3091  
    120120      // try to get value from context stack
    121121      IValueParameter param = GetValueParameterAndTranslateName(out name);
    122       if (param != null && param.Value != null) return param.Value;
     122      if (param != null) return param.Value;
    123123
    124124      // try to get variable from scope
Note: See TracChangeset for help on using the changeset viewer.