Remove dead space.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1166371 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
613e988c80
commit
960b9a6cf7
|
@ -855,7 +855,7 @@ public class ClassUtils {
|
|||
public static Class<?> getClass(String className, boolean initialize) throws ClassNotFoundException {
|
||||
ClassLoader contextCL = Thread.currentThread().getContextClassLoader();
|
||||
ClassLoader loader = contextCL == null ? ClassUtils.class.getClassLoader() : contextCL;
|
||||
return getClass(loader, className, initialize );
|
||||
return getClass(loader, className, initialize);
|
||||
}
|
||||
|
||||
// Public method
|
||||
|
|
Loading…
Reference in New Issue