Ignore:
Timestamp:
2015-06-21T02:25:56+02:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle: blocks

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
2 edited

Legend:

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

    r8510 r8513  
    9393     * if any available.
    9494     */
    95     public PreferenceSetting getPreferenceSetting() { return null; }
     95    public PreferenceSetting getPreferenceSetting() {
     96        return null;
     97    }
    9698
    9799    /**
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r8510 r8513  
    11241124     */
    11251125    public static Object getPlugin(String name) {
    1126         for (PluginProxy plugin : pluginList)
     1126        for (PluginProxy plugin : pluginList) {
    11271127            if (plugin.getPluginInformation().name.equals(name))
    11281128                return plugin.plugin;
     1129        }
    11291130        return null;
    11301131    }
Note: See TracChangeset for help on using the changeset viewer.