Some code cleaning

This commit is contained in:
2018-12-10 11:28:30 +01:00
parent f62a385eab
commit 254d57d834
9 changed files with 54 additions and 54 deletions

View File

@ -89,10 +89,8 @@ public class XClassLoader {
Class cls;
try {
cls = cl.loadClass(class_name);
} catch (ClassNotFoundException ex) {
Logger.getLogger(XClassLoader.class.getName()).log(Level.SEVERE, null, ex);
return null;
} catch (NoClassDefFoundError e) {
} catch (ClassNotFoundException | NoClassDefFoundError ex) {
// Logger.getLogger(XClassLoader.class.getName()).log(Level.SEVERE, null, ex);
return null;
}