Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/10 01:44:33 (14 years ago)
Author:
swagner
Message:

Revoked changes of r5177 (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs

    r5177 r5178  
    452452    #region HeuristicLab interfaces
    453453
    454     public override IOperation Apply(IExecutionContext context) {
     454    public override IOperation Apply() {
    455455      lock (syncRoot) {
    456456        if (executeMethod == null) {
     
    459459      }
    460460
    461       var parameters = new List<object>() { this, context };
     461      var parameters = new List<object>() { this, ExecutionContext };
    462462      parameters.AddRange(Parameters.Select(p => (object)p));
    463463      return (IOperation)executeMethod.Invoke(null, parameters.ToArray());
Note: See TracChangeset for help on using the changeset viewer.