Changeset 26509 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java
- Timestamp:
- 2011-08-11T00:45:56+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java
r26228 r26509 26 26 27 27 public class CadastreInterface { 28 public boolean downloadCancel led = false;28 public boolean downloadCanceled = false; 29 29 public HttpURLConnection urlConn = null; 30 30 … … 76 76 interfaceRef = null; 77 77 // open the session with the French Cadastre web front end 78 downloadCancel led = false;78 downloadCanceled = false; 79 79 try { 80 80 if (cookie == null || isCookieExpired) { … … 306 306 // list of values parsed in listOfFeuilles (list all non-georeferenced images) 307 307 lines = getFeuillesList(); 308 if (!downloadCancel led) {308 if (!downloadCanceled) { 309 309 parseFeuillesList(lines); 310 310 if (listOfFeuilles.size() > 0) { … … 567 567 //urlConn.disconnect(); 568 568 } 569 downloadCancel led = true;569 downloadCanceled = true; 570 570 lastWMSLayerName = null; 571 571 }
Note:
See TracChangeset
for help on using the changeset viewer.