Do not include system class loader to avoid conflicts with jars in classpath.

This commit is contained in:
hns 2003-06-27 10:31:42 +00:00
parent e2f6ff11a1
commit 9ff623ac77

View file

@ -35,7 +35,7 @@ public class FilteredClassLoader extends URLClassLoader {
* so that they can load classes from jar files in the app directories. * so that they can load classes from jar files in the app directories.
*/ */
public FilteredClassLoader(URL[] urls) { public FilteredClassLoader(URL[] urls) {
super(urls); super(urls, null);
} }
/** /**