Changeset 12665 in josm
- Timestamp:
- 2017-08-26T14:26:50+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/Main.java
r12647 r12665 109 109 */ 110 110 @Deprecated 111 public static final ExecutorService worker = MainApplication.worker;111 public static ExecutorService worker; 112 112 113 113 /** -
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r12659 r12665 130 130 * @author imi 131 131 */ 132 @SuppressWarnings("deprecation") 132 133 public class MainApplication extends Main { 133 134 … … 170 171 */ 171 172 public static final ExecutorService worker = new ProgressMonitorExecutor("main-worker-%d", Thread.NORM_PRIORITY); 173 static { 174 Main.worker = worker; 175 } 172 176 173 177 /**
Note:
See TracChangeset
for help on using the changeset viewer.