- Timestamp:
- 2009-07-11T18:09:30+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginSelection.java
r1767 r1769 65 65 Set<PluginInformation> toUpdate = new HashSet<PluginInformation>(); 66 66 StringBuilder toUpdateStr = new StringBuilder(); 67 for ( PluginProxy proxy : PluginHandler.pluginList) {68 PluginInformation local = localPlugins.get(p roxy.info.name);67 for (String pluginName : Main.pref.getCollection("plugins", Collections.<String>emptySet())) { 68 PluginInformation local = localPlugins.get(pluginName); 69 69 PluginInformation description = availablePlugins.get(local.name); 70 70
Note:
See TracChangeset
for help on using the changeset viewer.