Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3046


Ignore:
Timestamp:
03/15/10 19:35:14 (14 years ago)
Author:
gkronber
Message:

Fixed a few warnings in plugin infrastructure. #915 (Remove warnings from HL 3.3 solution)

Location:
trunk/sources/HeuristicLab.PluginInfrastructure
Files:
3 edited

Legend:

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

    r2922 r3046  
    225225    /// <summary>
    226226    /// Finds all types that are subtypes or equal to the specified type if they are part of the given
    227     /// <paramref name="plugin"/>.
     227    /// <paramref name="pluginDescription"/>.
    228228    /// </summary>
    229229    /// <param name="type">Most general type for which to find matching types.</param>
    230     /// <param name="plugin">The plugin the subtypes must be part of.</param>
     230    /// <param name="pluginDescription">The plugin the subtypes must be part of.</param>
    231231    /// <param name="onlyInstantiable">Return only types that are instantiable
    232232    /// (interfaces, abstract classes... are not returned)</param>
  • trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginInfrastructureEventArgs.cs

    r2922 r3046  
    3434
    3535    private static PluginInfrastructureEventArgs emptyArgs = new PluginInfrastructureEventArgs(string.Empty);
    36     internal static PluginInfrastructureEventArgs Empty {
     36    internal new static PluginInfrastructureEventArgs Empty {
    3737      get { return emptyArgs; }
    3838    }
  • trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginValidator.cs

    r2922 r3046  
    265265    /// plugin dependency checking before plugin activation.
    266266    /// </summary>
    267     /// <param name="t"></param>
     267    /// <param name="pluginType"></param>
    268268    private PluginDescription GetPluginDescription(Type pluginType) {
    269269
Note: See TracChangeset for help on using the changeset viewer.