Skip to content

Commit 7042ce3

Browse files
committed
fix bug
1 parent 05b06f9 commit 7042ce3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/dtstack/jlogstash/classloader/JarClassLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public JarClassLoader(){
5959
public ClassLoader getClassLoaderByPluginName(String name){
6060
URL[] urls = jarUrls.get(name);
6161
ClassLoader classLoader = this.getClass().getClassLoader();
62-
if(urls==null|urls.length==0){
62+
if(urls==null || urls.length==0){
6363
logger.warn("{}:load by AppclassLoader",name);
6464
return classLoader;
6565
}

0 commit comments

Comments
 (0)