ignore types which are abstract
This commit is contained in:
parent
d6287b07f3
commit
83b68d16fa
@ -98,6 +98,9 @@ public class Plugin
|
|||||||
System.Collections.Generic.List<Plugin> plugins = new System.Collections.Generic.List<Plugin>();
|
System.Collections.Generic.List<Plugin> plugins = new System.Collections.Generic.List<Plugin>();
|
||||||
for (int i = 0; i < types.Length; i++)
|
for (int i = 0; i < types.Length; i++)
|
||||||
{
|
{
|
||||||
|
if (types[i].IsAbstract)
|
||||||
|
continue;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user