Skip to content

Commit

Permalink
Add .
Browse files Browse the repository at this point in the history
  • Loading branch information
huanmeng-qwq committed Dec 7, 2023
1 parent 9b83794 commit c8a61e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public final Class<?> findClass0(String name, boolean dontCallOther) throws Clas
if (cache.containsKey(name)) {
return cache.get(name);
}
if (parentClassLoader != null && (name.startsWith("snw.kookbc.") || name.startsWith("snw.jkook"))) {
if (parentClassLoader != null && (name.startsWith("snw.kookbc.") || name.startsWith("snw.jkook."))) {
Class<?> clazz = parentClassLoader.findClass(name);
cache.put(name, clazz);
return clazz;
Expand Down

0 comments on commit c8a61e2

Please sign in to comment.