Changeset 5306 in josm for trunk/src


Ignore:
Timestamp:
2012-06-28T10:50:54+02:00 (12 years ago)
Author:
simon04
Message:

fix #7818 - problem with plugin list (lines exceeding 140 characters)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java

    r4024 r5306  
    7777                if (line.startsWith("\t")) {
    7878                    line = line.substring(1);
    79                     if (line.length() > 70) {
     79                    while (line.length() > 70) {
    8080                        manifest.append(line.substring(0, 70)).append("\n");
    8181                        line = " " + line.substring(70);
Note: See TracChangeset for help on using the changeset viewer.