Changeset 30859 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadWMSPlanImage.java
- Timestamp:
- 2014-12-19T17:12:01+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadWMSPlanImage.java
r26509 r30859 16 16 17 17 public class DownloadWMSPlanImage { 18 18 19 19 private Future<Task> task = null; 20 20 private WMSLayer wmsLayer; … … 22 22 private static boolean dontGeoreference = false; 23 23 private static String errorMessage; 24 24 25 25 private class Task extends PleaseWaitRunnable { 26 26 public Task(WMSLayer wmsLayer, Bounds bounds) { … … 85 85 } catch (DuplicateLayerException e) { 86 86 // we tried to grab onto a duplicated layer (removed) 87 System.err.println("removed a duplicated layer");87 Main.warn("removed a duplicated layer"); 88 88 } catch (WMSException e) { 89 89 errorMessage = e.getMessage(); … … 91 91 } 92 92 } 93 93 94 94 @Override 95 95 protected void cancel() { … … 102 102 } 103 103 } 104 104 105 105 public void download(WMSLayer wmsLayer) { 106 106 MapView mv = Main.map.mapView;
Note:
See TracChangeset
for help on using the changeset viewer.
