Expose method to add exclusions.

This commit is contained in:
Christian 2013-06-14 11:32:12 -04:00
parent 9af212c57d
commit 2f0e26717f

View file

@ -319,7 +319,7 @@ public class LaunchClassLoader extends URLClassLoader {
return Collections.unmodifiableList(transformers);
}
private void addClassLoaderExclusion(String toExclude) {
public void addClassLoaderExclusion(String toExclude) {
classLoaderExceptions.add(toExclude);
}