Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/09 16:59:23 (15 years ago)
Author:
msteinbi
Message:

added wcf annotations to cached hive plugininfo (#531)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientCommunicator.cs

    r1630 r1637  
    580580    public ResponsePlugin SendPlugins(List<HivePluginInfo> pluginList) {
    581581      ResponsePlugin response = new ResponsePlugin();
     582      PluginManager.Manager.Initialize();
    582583      ICollection<PluginInfo> allActivePlugins = PluginManager.Manager.ActivePlugins;
    583584
    584585      foreach (HivePluginInfo pluginInfo in pluginList) {
     586        // TODO: BuildDate deleted, not needed???
     587        // TODO: Split version to major, minor and revision number
    585588        foreach (PluginInfo currPlugin in allActivePlugins) {
    586589          if (currPlugin.Name == pluginInfo.Name
    587               && currPlugin.Version.ToString() == pluginInfo.Version
    588               && currPlugin.BuildDate == pluginInfo.BuildDate) {
     590              && currPlugin.Version.ToString() == pluginInfo.Version) {
    589591
    590592            CachedHivePluginInfo currCachedPlugin = new CachedHivePluginInfo {
Note: See TracChangeset for help on using the changeset viewer.