- Timestamp:
- 2018-05-01T21:26:32+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
r12620 r13696 68 68 if (line.startsWith("\t")) { 69 69 line = line.substring(1); 70 /* NOTE: Although manifest specification says line should not be longer than 72 bytes it 71 supports more than 500 bytes and thus even the longest possible 72 character UTF-8, so 72 this code correctly splits the text at 70 characters, not bytes. */ 70 73 while (line.length() > 70) { 71 74 manifest.append(line.substring(0, 70)).append('\n');
Note:
See TracChangeset
for help on using the changeset viewer.