Free cookie consent management tool by TermsFeed Policy Generator

Changeset 18138 for trunk


Ignore:
Timestamp:
12/16/21 09:47:34 (2 years ago)
Author:
dpiringe
Message:

#3143

  • overwrote the method GetActualValue in ValueLookupParameter, it will return its configured value if the ExecutionContext is null
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs

    r17180 r18138  
    151151    }
    152152
     153    protected override IItem GetActualValue() {
     154      if (ExecutionContext == null)
     155        return Value;
     156      return base.GetActualValue();
     157    }
     158
    153159    public override string ToString() {
    154160      if (Value != null)
Note: See TracChangeset for help on using the changeset viewer.