Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zoudaokoulife committed Mar 23, 2017
1 parent 05b06f9 commit 7042ce3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public JarClassLoader(){
public ClassLoader getClassLoaderByPluginName(String name){
URL[] urls = jarUrls.get(name);
ClassLoader classLoader = this.getClass().getClassLoader();
if(urls==null|urls.length==0){
if(urls==null || urls.length==0){
logger.warn("{}:load by AppclassLoader",name);
return classLoader;
}
Expand Down

0 comments on commit 7042ce3

Please sign in to comment.