Ignore:
Timestamp:
2014-01-31T02:44:56+01:00 (11 years ago)
Author:
Don-vip
Message:

Sonar - fix various issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java

    r6643 r6792  
    322322        if (className == null)
    323323            return null;
    324         try{
    325             Class<?> realClass = Class.forName(className, true, classLoader);
    326             return realClass;
     324        try {
     325            return Class.forName(className, true, classLoader);
    327326        } catch (ClassNotFoundException e) {
    328327            throw new PluginException(name, e);
     
    381380            File pluginFile = new File(s, pluginName + ".jar");
    382381            if (pluginFile.exists()) {
    383                 PluginInformation info = new PluginInformation(pluginFile);
    384                 return info;
     382                return new PluginInformation(pluginFile);
    385383            }
    386384        }
Note: See TracChangeset for help on using the changeset viewer.