Ignore:
Timestamp:
2018-06-21T16:06:43+02:00 (6 years ago)
Author:
Don-vip
Message:

fix #16410 - workaround for "IllegalArgumentException: Window must not be zero" on Linux (patch by kendzi)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r13960 r13963  
    10301030        // splash can be null sometimes on Linux, in this case try to load JOSM silently
    10311031        final SplashProgressMonitor monitor = splash != null ? splash.getProgressMonitor() : new SplashProgressMonitor(null, e -> {
    1032             Logging.debug(e.toString());
     1032            if (e != null) {
     1033                Logging.debug(e.toString());
     1034            }
    10331035        });
    10341036        monitor.beginTask(tr("Initializing"));
Note: See TracChangeset for help on using the changeset viewer.