Changeset 14131 in josm for trunk/src/org
- Timestamp:
- 2018-08-11T23:08:04+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/Main.java
r14128 r14131 278 278 */ 279 279 protected void shutdown() { 280 if (!GraphicsEnvironment.isHeadless()) { 281 ImageProvider.shutdown(false); 282 } 280 ImageProvider.shutdown(false); 283 281 try { 284 282 pref.saveDefaults(); … … 286 284 Logging.log(Logging.LEVEL_WARN, tr("Failed to save default preferences."), ex); 287 285 } 288 if (!GraphicsEnvironment.isHeadless()) { 289 ImageProvider.shutdown(true); 290 } 286 ImageProvider.shutdown(true); 291 287 } 292 288 -
trunk/src/org/openstreetmap/josm/spi/lifecycle/InitStatusListener.java
r14125 r14131 4 4 /** 5 5 * Initialization task listener. 6 * @since xxx6 * @since 14125 7 7 */ 8 8 public interface InitStatusListener { -
trunk/src/org/openstreetmap/josm/spi/lifecycle/InitializationTask.java
r14125 r14131 7 7 /** 8 8 * Initialization task notifying the current lifecycle {@link InitStatusListener}. 9 * @since xxx9 * @since 14125 10 10 */ 11 11 public final class InitializationTask implements Callable<Void> { -
trunk/src/org/openstreetmap/josm/spi/lifecycle/Lifecycle.java
r14125 r14131 6 6 /** 7 7 * JOSM lifecycle. 8 * @since xxx8 * @since 14125 9 9 */ 10 10 public final class Lifecycle {
Note:
See TracChangeset
for help on using the changeset viewer.