Ignore:
Timestamp:
2014-08-16T14:10:24+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #9435 - add last 10 error/warning messages to bug report

File:
1 edited

Legend:

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

    r7348 r7420  
    12711271        }
    12721272        Collections.sort(pl);
     1273        if (!pl.isEmpty()) {
     1274            text.append("Plugins:\n");
     1275        }
    12731276        for (String s : pl) {
    1274             text.append("Plugin: ").append(s).append("\n");
     1277            text.append("- ").append(s).append("\n");
    12751278        }
    12761279        return text.toString();
Note: See TracChangeset for help on using the changeset viewer.