Changeset 8390 in josm for trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
- Timestamp:
- 2015-05-18T02:14:30+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
r8291 r8390 69 69 line = line.substring(1); 70 70 while (line.length() > 70) { 71 manifest.append(line.substring(0, 70)).append( "\n");71 manifest.append(line.substring(0, 70)).append('\n'); 72 72 line = " " + line.substring(70); 73 73 } 74 manifest.append(line).append( "\n");74 manifest.append(line).append('\n'); 75 75 continue; 76 76 }
Note:
See TracChangeset
for help on using the changeset viewer.
