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:
Gary D. Gregory 2011-09-07 20:09:25 +00:00
parent 613e988c80
commit 960b9a6cf7
1 changed files with 1 additions and 1 deletions

View File

@ -855,7 +855,7 @@ public static Class<?> getClass(String className) throws ClassNotFoundException
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