Skip to content

Commit 44fde91

Browse files
Kevin SeimKevin Seim
authored andcommitted
Fixed logic to use ClassLoader parameter (gc109)
1 parent e2749e8 commit 44fde91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/beanio/internal/util/IOUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static void closeQuietly(OutputStream out) {
8585
* @since 1.2.1
8686
*/
8787
public static URL getResource(ClassLoader classLoader, String resource) {
88-
ClassLoader cl = null;
88+
ClassLoader cl = classLoader;
8989
try {
9090
cl = Thread.currentThread().getContextClassLoader();
9191
}

0 commit comments

Comments
 (0)