Changeset 8513 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2015-06-21T02:25:56+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/Plugin.java
r8510 r8513 93 93 * if any available. 94 94 */ 95 public PreferenceSetting getPreferenceSetting() { return null; } 95 public PreferenceSetting getPreferenceSetting() { 96 return null; 97 } 96 98 97 99 /** -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r8510 r8513 1124 1124 */ 1125 1125 public static Object getPlugin(String name) { 1126 for (PluginProxy plugin : pluginList) 1126 for (PluginProxy plugin : pluginList) { 1127 1127 if (plugin.getPluginInformation().name.equals(name)) 1128 1128 return plugin.plugin; 1129 } 1129 1130 return null; 1130 1131 }
Note: See TracChangeset
for help on using the changeset viewer.