Skip to content

Commit a16ed32

Browse files
authored
Update ClassLoaderWrapper.java
1 parent fd04f09 commit a16ed32

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/org/apache/ibatis/io/ClassLoaderWrapper.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,7 @@ Class<?> classForName(String name, ClassLoader[] classLoader) throws ClassNotFou
183183

184184
try {
185185

186-
Class<?> c = Class.forName(name, true, cl);
187-
188-
return c;
186+
return Class.forName(name, true, cl);
189187

190188
} catch (ClassNotFoundException e) {
191189
// we'll ignore this until all classloaders fail to locate the class

0 commit comments

Comments
 (0)