Changeset 17663 in josm for trunk/src/org/openstreetmap/josm/spi/lifecycle
- Timestamp:
- 2021-03-25T01:56:53+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/spi/lifecycle/Lifecycle.java
r16995 r17663 79 79 } 80 80 // asynchronous initializations to be completed eventually 81 initSequence.asynchronousRunnableTasks().forEach(service::submit); 82 initSequence.asynchronousCallableTasks().forEach(service::submit); 81 initSequence.asynchronousRunnableTasks().forEach(x -> { 82 if (x != null) service.submit(x); 83 }); 84 initSequence.asynchronousCallableTasks().forEach(x -> { 85 if (x != null) service.submit(x); 86 }); 83 87 try { 84 88 service.shutdown();
Note:
See TracChangeset
for help on using the changeset viewer.