Changeset 5583 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2012-11-17T12:41:36+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r5121 r5583 181 181 s = attr.getValue("Plugin-Description"); 182 182 if(s != null) { 183 s = tr(s); 183 try { 184 s = tr(s); 185 } catch (IllegalArgumentException e) { 186 System.out.println(tr("Invalid plugin description ''{0}'' in plugin {1}", s, name)); 187 } 184 188 } 185 189 }
Note:
See TracChangeset
for help on using the changeset viewer.