Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/24/09 14:35:35 (15 years ago)
Author:
kgrading
Message:

added proper exception handling (#601)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/PluginManager.cs

    r1602 r1655  
    194194      PermissionSet pset;
    195195
     196     
     197
    196198      DiscoveryService dService = new DiscoveryService();
    197199      //get the declaring plugin of the job
     
    227229      NotifyListeners(PluginManagerAction.Initializing, "All plugins");
    228230
    229       if (assemblyFiles != null && assemblyFiles.Count > 0)
    230         remoteRunner.LoadPlugins(assemblyFiles);
    231    
    232       //if (depPlugins != null && depPlugins.Count > 0) {       
    233       //  remoteRunner.LoadPlugins(depPlugins);
    234       //}
     231      //if (assemblyFiles != null && assemblyFiles.Count > 0)
     232      //  remoteRunner.LoadPlugins(assemblyFiles);
     233     
     234      if (depPlugins != null && depPlugins.Count > 0) {       
     235        remoteRunner.LoadPlugins(depPlugins);
     236      }
    235237      NotifyListeners(PluginManagerAction.Initialized, "All plugins");
    236238      return applicationDomain;
Note: See TracChangeset for help on using the changeset viewer.