Do not include system class loader to avoid conflicts with jars in classpath.
This commit is contained in:
parent
e2f6ff11a1
commit
9ff623ac77
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ public class FilteredClassLoader extends URLClassLoader {
|
|||
* so that they can load classes from jar files in the app directories.
|
||||
*/
|
||||
public FilteredClassLoader(URL[] urls) {
|
||||
super(urls);
|
||||
super(urls, null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue