Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1897


Ignore:
Timestamp:
05/26/09 13:03:09 (15 years ago)
Author:
swagner
Message:

Fixed #649

File:
1 edited

Legend:

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

    r1664 r1897  
    160160          foreach (Type t in exported) {
    161161            // if there is a type that implements IPlugin
    162             if (Array.Exists<Type>(t.GetInterfaces(), delegate(Type iface) {
     162            if (! t.IsAbstract && Array.Exists<Type>(t.GetInterfaces(), delegate(Type iface) {
    163163              // use AssemblyQualifiedName to compare the types because we can't directly
    164164              // compare ReflectionOnly types and Execution types
Note: See TracChangeset for help on using the changeset viewer.