Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 01:29:35 (15 years ago)
Author:
swagner
Message:

Removed unnecessary checks if the application manager is not null (#954).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/EngineAlgorithm.cs

    r3286 r3303  
    118118    private void Initialize() {
    119119      operatorGraph.InitialOperatorChanged += new EventHandler(OperatorGraph_InitialOperatorChanged);
    120       if ((engine == null) && (ApplicationManager.Manager != null)) {
     120      if (engine == null) {
    121121        var types = ApplicationManager.Manager.GetTypes(typeof(IEngine));
    122122        Type t = types.FirstOrDefault(x => x.Name.Equals("SequentialEngine"));
Note: See TracChangeset for help on using the changeset viewer.