Changeset 13796 in osm for applications/editors
- Timestamp:
- 2009-02-19T18:59:32+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java
r13673 r13796 63 63 protected final int serializeFormatVersion = 4; 64 64 65 private ExecutorService executor ;65 private ExecutorService executor = null; 66 66 67 67 public WMSLayer() { … … 82 82 83 83 executor = Executors.newFixedThreadPool(3); 84 } 85 86 public void destroy() { 87 try { 88 executor.shutdown(); 89 // Might not be initalized, so catch NullPointer as well 90 } catch(Exception x) {} 84 91 } 85 92
Note:
See TracChangeset
for help on using the changeset viewer.