Skip to content

Commit

Permalink
Update ClassLoaderUtils.java (#174)
Browse files Browse the repository at this point in the history
Fix #173
  • Loading branch information
daveekr committed Feb 17, 2024
1 parent 2172da1 commit d70aa74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static <T> Class<T> load(String className, ClassLoader classLoader) {

// If not found, delegate to the given classloader (if set).
if (loaded == null && classLoader != null) {
return tryToLoad(className, classLoader);
loaded = tryToLoad(className, classLoader);
}

// Last attempt, try with the TCCL
Expand Down

0 comments on commit d70aa74

Please sign in to comment.