Fixed .NET generic support regression introduced when ikvmc moved to not using the CompilerClassLoader as the system class loader.

This commit is contained in:
jfrijters 2008-09-21 09:48:57 +00:00
Родитель 5cd8a0b5b9
Коммит 10cb0a21e9
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -177,7 +177,12 @@ namespace IKVM.Internal
peerHack = false;
}
}
return GetTypeWrapperCompilerHook(name);
TypeWrapper tw1 = GetTypeWrapperCompilerHook(name);
if(tw1 != null)
{
return tw1;
}
return LoadGenericClass(name);
}
private TypeWrapper GetTypeWrapperCompilerHook(string name)