Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11781


Ignore:
Timestamp:
01/16/15 09:49:40 (9 years ago)
Author:
mkommend
Message:

#2294: Corrected warnings in SandboxApplicationManager.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/SandboxApplicationManager.cs

    r11772 r11781  
    323323    }
    324324
    325     IEnumerable<Type> IApplicationManager.GetTypes(Type type, Assembly assembly, bool onlyInstantiable = true, bool includeGenericTypeDefinitions = false) {
     325    IEnumerable<Type> IApplicationManager.GetTypes(Type type, Assembly assembly, bool onlyInstantiable, bool includeGenericTypeDefinitions) {
    326326      return GetTypes(type, assembly, onlyInstantiable, includeGenericTypeDefinitions);
    327327    }
    328     IEnumerable<Type> IApplicationManager.GetTypes(IEnumerable<Type> types, Assembly assembly, bool onlyInstantiable = true, bool includeGenericTypeDefinitions = false, bool assignableToAllTypes = true) {
    329       return GetTypes(types, assembly, onlyInstantiable, includeGenericTypeDefinitions,assignableToAllTypes);
     328    IEnumerable<Type> IApplicationManager.GetTypes(IEnumerable<Type> types, Assembly assembly, bool onlyInstantiable, bool includeGenericTypeDefinitions, bool assignableToAllTypes) {
     329      return GetTypes(types, assembly, onlyInstantiable, includeGenericTypeDefinitions, assignableToAllTypes);
    330330    }
    331331
Note: See TracChangeset for help on using the changeset viewer.