Changeset 1897
- Timestamp:
- 05/26/09 13:03:09 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Loader.cs
r1664 r1897 160 160 foreach (Type t in exported) { 161 161 // 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) { 163 163 // use AssemblyQualifiedName to compare the types because we can't directly 164 164 // compare ReflectionOnly types and Execution types
Note: See TracChangeset
for help on using the changeset viewer.