Changeset 8736 in josm
- Timestamp:
- 2015-09-08T15:57:25+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/RestartAction.java
r8666 r8736 97 97 // execute the command in a shutdown hook, to be sure that all the 98 98 // resources have been disposed before restarting the application 99 Runtime.getRuntime().addShutdownHook(new Thread() { 99 Runtime.getRuntime().addShutdownHook(new Thread("josm-restarter") { 100 100 @Override 101 101 public void run() { -
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r8706 r8736 585 585 Main.pref.put("validated.ipv6", hasv6); 586 586 } 587 }).start(); 587 }, "IPv6-checker").start(); 588 588 } 589 589 } -
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r8612 r8736 545 545 final EastNorth finalNewCenter = newCenter; 546 546 547 new Thread() { 547 new Thread("smooth-scroller") { 548 548 @Override 549 549 public void run() { -
trunk/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java
r8540 r8736 157 157 doRealRun(); 158 158 } 159 }).start(); 159 }, getClass().getName()).start(); 160 160 } else { 161 161 doRealRun(); -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java
r8734 r8736 151 151 monitor.beginTask(tr("Uploading and saving modified layers ...")); 152 152 this.saveAndUploadTask = new SaveAndUploadTask(model, monitor); 153 new Thread(saveAndUploadTask).start(); 153 new Thread(saveAndUploadTask, saveAndUploadTask.getClass().getName()).start(); 154 154 } 155 155 -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java
r8512 r8736 445 445 repaint(); 446 446 if (file != null) { 447 new Thread(new LoadImageRunnable(file, orientation)).start(); 447 new Thread(new LoadImageRunnable(file, orientation), LoadImageRunnable.class.getName()).start(); 448 448 } 449 449 }
Note:
See TracChangeset
for help on using the changeset viewer.