ClientLoader: Use our classloader, not the system one for loading rs
This commit is contained in:
@@ -178,7 +178,7 @@ public class ClientLoader
|
|||||||
|
|
||||||
String initialClass = config.getInitialClass();
|
String initialClass = config.getInitialClass();
|
||||||
|
|
||||||
ClassLoader rsClassLoader = new ClassLoader()
|
ClassLoader rsClassLoader = new ClassLoader(ClientLoader.class.getClassLoader())
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
protected Class<?> findClass(String name) throws ClassNotFoundException
|
protected Class<?> findClass(String name) throws ClassNotFoundException
|
||||||
|
|||||||
Reference in New Issue
Block a user