ClientLoader: Use our classloader, not the system one for loading rs

This commit is contained in:
Max Weber
2018-11-29 07:09:52 -07:00
parent 0c54cf0448
commit 38ff0a9bf5

View File

@@ -178,7 +178,7 @@ public class ClientLoader
String initialClass = config.getInitialClass();
ClassLoader rsClassLoader = new ClassLoader()
ClassLoader rsClassLoader = new ClassLoader(ClientLoader.class.getClassLoader())
{
@Override
protected Class<?> findClass(String name) throws ClassNotFoundException