Changeset 15227 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2019-07-07T19:04:57+02:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreferencesModel.java
r14384 r15227 368 368 PluginInformation oldinfo = getPluginInformation(pi.name); 369 369 if (oldinfo != null) { 370 oldinfo.update LocalInfo(newinfo);370 oldinfo.updateFromJar(newinfo); 371 371 } 372 372 } catch (PluginException e) { -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r15223 r15227 1357 1357 return true; 1358 1358 } else if (jar != null) { 1359 Logging. warn("Invalid jar file ''"+jar+"'' (exists: "+jar.exists()+", canRead: "+jar.canRead()+')');1359 Logging.debug("Invalid jar file ''"+jar+"'' (exists: "+jar.exists()+", canRead: "+jar.canRead()+')'); 1360 1360 } 1361 1361 return false;
Note:
See TracChangeset
for help on using the changeset viewer.