Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/11 12:02:12 (13 years ago)
Author:
cneumuel
Message:

#1233

  • small fixes for HiveEngine
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ExperimentManager/EngineHiveJob.cs

    r6178 r6198  
    2222using System;
    2323using System.Collections.Generic;
     24using System.Linq;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
     
    6263      }
    6364
     65      // add type objects from object graph to work around ticket #1527
     66      var typeObjects = ItemJob.GetObjectGraphObjects().OfType<Type>();
     67      usedTypes = new List<Type>(usedTypes).Union(typeObjects);
     68
    6469      PluginUtil.CollectDeclaringPlugins(plugins, usedTypes);
    65 
     70     
    6671      return jobData;
    6772    }
Note: See TracChangeset for help on using the changeset viewer.