Changeset 8846 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2015-10-10T01:40:42+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/PluginHandler.java
r8840 r8846 1390 1390 pl.remove(pi.name); 1391 1391 pl.add(pi.name + " (" + (pi.localversion != null && !pi.localversion.isEmpty() 1392 ? pi.localversion : "unknown") + ")");1392 ? pi.localversion : "unknown") + ')'); 1393 1393 } 1394 1394 Collections.sort(pl); -
trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
r8510 r8846 70 70 while (line.length() > 70) { 71 71 manifest.append(line.substring(0, 70)).append('\n'); 72 line = " "+ line.substring(70);72 line = ' ' + line.substring(70); 73 73 } 74 74 manifest.append(line).append('\n');
Note: See TracChangeset
for help on using the changeset viewer.