Changeset 18707 in josm
- Timestamp:
- 2023-04-24T18:48:23+02:00 (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
r18445 r18707 160 160 } 161 161 } 162 // Add Gnome A tkwrapper details if found162 // Add Gnome ATK wrapper details if found 163 163 String atkWrapperDetails = platform.getAtkWrapperPackageDetails(); 164 164 if (atkWrapperDetails != null) { 165 165 text.format("Java ATK Wrapper package: %s%n", atkWrapperDetails); 166 166 } 167 // Add dependenc iesdetails if found167 // Add dependency details if found 168 168 for (String p : new String[] { 169 169 "apache-commons-compress", "libcommons-compress-java", … … 208 208 } 209 209 if (!vmArguments.isEmpty()) { 210 text.format("VM arguments: %s%n", vmArguments.toString().replace("\\\\", "\\"));210 text.format("VM arguments: %s%n", paramCleanup(vmArguments).toString().replace("\\\\", "\\")); 211 211 } 212 212 } catch (SecurityException e) { … … 281 281 282 282 /** 283 * Shortens and removes private information sfrom a parameter used for status report.283 * Shortens and removes private information from a parameter used for status report. 284 284 * @param param parameter to cleanup 285 285 * @return shortened/anonymized parameter
Note:
See TracChangeset
for help on using the changeset viewer.