Changeset 5306 in josm
- Timestamp:
- 2012-06-28T10:50:54+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
r4024 r5306 77 77 if (line.startsWith("\t")) { 78 78 line = line.substring(1); 79 if(line.length() > 70) {79 while (line.length() > 70) { 80 80 manifest.append(line.substring(0, 70)).append("\n"); 81 81 line = " " + line.substring(70);
Note:
See TracChangeset
for help on using the changeset viewer.