Changes for BAEL-2288

This commit is contained in:
Nikhil Khatwani
2018-10-09 23:16:56 +05:30
parent 7d03f03ebb
commit e5be99d328
2 changed files with 7 additions and 4 deletions
@@ -11,7 +11,7 @@ public class CustomClassLoaderUnitTest {
public void customLoader() throws ClassNotFoundException, IllegalAccessException, InstantiationException, NoSuchMethodException, InvocationTargetException {
CustomClassLoader customClassLoader = new CustomClassLoader();
Class<?> c = customClassLoader.getClass(PrintClassLoader.class.getName());
Class<?> c = customClassLoader.findClass(PrintClassLoader.class.getName());
Object ob = c.newInstance();