Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/03/17 09:27:05 (6 years ago)
Author:
jkarder
Message:

#2831: merged r15368 and r15376 into stable

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs

    r14186 r15393  
    6262          catch (Exception ex) {
    6363            ExecutionStack.Push(operation);
    64             if (ex is OperationCanceledException) throw ex;
     64            if (ex is OperationCanceledException) throw;
    6565            else throw new OperatorExecutionException(operation.Operator, ex);
    6666          }
    6767          if (next != null) ExecutionStack.Push(next);
    68 
    69           if (operation.Operator.Breakpoint) {
    70             Log.LogMessage(string.Format("Breakpoint: {0}", operation.Operator.Name != string.Empty ? operation.Operator.Name : operation.Operator.ItemName));
    71             Pause();
    72           }
    7368        }
    7469      }
Note: See TracChangeset for help on using the changeset viewer.