Changeset 5306 in josm


Ignore:
Timestamp:
Jun 28, 2012 10:50:54 AM (11 months 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.