Changeset 2869 in josm for trunk/src/org/openstreetmap/josm/gui/MapFrame.java
- Timestamp:
- 2010-01-17T11:56:07+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapFrame.java
r2657 r2869 199 199 // MapFrame gets destroyed when the last layer is removed, but the status line background 200 200 // thread that collects the information doesn't get destroyed automatically. 201 if(statusLine.thread == null) return; 202 try { 203 statusLine.thread.interrupt(); 204 } catch (Exception e) {} 201 if(statusLine.thread != null) { 202 try { 203 statusLine.thread.interrupt(); 204 } catch (Exception e) { 205 e.printStackTrace(); 206 } 207 } 205 208 } 206 209 … … 214 217 public void initializeDialogsPane() { 215 218 dialogsPanel.initialize(allDialogs); 216 }217 218 /**219 *220 */221 public void tearDownDialogsPane() {222 dialogsPanel.tearDown();223 219 } 224 220
Note:
See TracChangeset
for help on using the changeset viewer.