Changeset 16531 in josm for trunk/src/org
- Timestamp:
- 2020-05-31T21:06:11+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
r16509 r16531 22 22 import java.util.Map; 23 23 import java.util.Map.Entry; 24 import java.util.Optional; 24 25 import java.util.Set; 25 26 import java.util.stream.Collectors; 27 28 import javax.swing.UIManager; 26 29 27 30 import org.openstreetmap.josm.data.Preferences; … … 92 95 .append(getSystemProperty("java.vendor")).append(", ") 93 96 .append(getSystemProperty("java.vm.name")) 97 .append("\nLook and Feel: ") 98 .append(Optional.ofNullable(UIManager.getLookAndFeel()).map(laf -> laf.getClass().getName()).orElse("null")) 94 99 .append("\nScreen: "); 95 100 if (!GraphicsEnvironment.isHeadless()) {
Note:
See TracChangeset
for help on using the changeset viewer.