Changeset 3299 in josm for trunk/src


Ignore:
Timestamp:
2010-06-03T08:53:34+02:00 (14 years ago)
Author:
stoecker
Message:

some minor cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java

    r3083 r3299  
    5151        text.append(Version.getInstance().getReleaseAttributes());
    5252        text.append("\n");
     53        text.append("Identification: " + Version.getInstance().getAgentString());
     54        text.append("\n");
    5355        text.append("Memory Usage: ");
    5456        text.append(Runtime.getRuntime().totalMemory()/1024/1024);
     
    6264        text.append("\n");
    6365        text.append("Operating system: "+ System.getProperty("os.name"));
    64         text.append("\n\n");
     66        text.append("\n");
    6567        DataSet dataset = Main.main.getCurrentDataSet();
    6668        if (dataset != null) {
    67             text.append("Dataset consistency test:\n");
    6869            String result = DatasetConsistencyTest.runTests(dataset);
    6970            if (result.length() == 0) {
    70                 text.append("No problems found\n");
     71                text.append("Dataset consistency test: No problems found\n");
    7172            } else {
    72                 text.append(result);
     73                text.append("\nDataset consistency test:\n"+result+"\n");
    7374            }
    74             text.append("\n");
    7575        }
    7676        text.append("\n");
Note: See TracChangeset for help on using the changeset viewer.