Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (8 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginManager.cs

    r14185 r14927  
    8383        // forward all events from the remoteValidator to listeners
    8484        remoteValidator.PluginLoaded +=
    85           delegate(object sender, PluginInfrastructureEventArgs e) {
     85          delegate (object sender, PluginInfrastructureEventArgs e) {
    8686            OnPluginLoaded(e);
    8787          };
     
    9090        plugins.AddRange(remoteValidator.Plugins);
    9191        applications.AddRange(remoteValidator.Applications);
    92       }
    93       finally {
     92      } finally {
    9493        // discard the AppDomain that was used for plugin discovery
    9594        AppDomain.Unload(pluginDomain);
     
    130129        OnApplicationStarted(new PluginInfrastructureEventArgs(appInfo));
    131130        applicationManager.Run(appInfo, args);
    132       }
    133       finally {
     131      } finally {
    134132        // make sure domain is unloaded in all cases
    135133        AppDomain.Unload(applicationDomain);
Note: See TracChangeset for help on using the changeset viewer.