Changeset 11557 in josm for trunk/src/org
- Timestamp:
- 2017-02-13T22:39:50+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r11535 r11557 407 407 408 408 EventQueue.invokeAndWait(new CollectorWorker(ms)); 409 } catch (InterruptedException e) {410 // Occurs frequently during JOSM shutdown, log set to trace only411 Main.trace("InterruptedException in "+MapStatus.class.getSimpleName());412 Thread.currentThread().interrupt();413 409 } catch (InvocationTargetException e) { 414 410 Main.warn(e); 415 411 } 416 412 } 413 } catch (InterruptedException e) { 414 // Occurs frequently during JOSM shutdown, log set to trace only 415 Main.trace("InterruptedException in "+MapStatus.class.getSimpleName()); 416 Thread.currentThread().interrupt(); 417 417 } finally { 418 418 unregisterListeners();
Note:
See TracChangeset
for help on using the changeset viewer.