Ticket #2902: updatenotloaded.patch
| File updatenotloaded.patch, 921 bytes (added by , 17 years ago) |
|---|
-
src/org/openstreetmap/josm/plugins/PluginSelection.java
64 64 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 71 71 if (description.version != null && !description.version.equals(local.version)) {
