Changeset 29679 in osm for applications/editors/josm/plugins/opendata/modules
- Timestamp:
- 2013-06-21T00:57:18+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/opendata/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/modules/fr.datagouvfr/src/org/openstreetmap/josm/plugins/opendata/modules/fr/datagouvfr/datasets/hydrologie/EauxDeSurfaceHandler.java
r28113 r29679 29 29 30 30 import org.openstreetmap.josm.data.osm.DataSet; 31 import org.openstreetmap.josm.plugins.opendata.core.io.archive.Default ZipHandler;31 import org.openstreetmap.josm.plugins.opendata.core.io.archive.DefaultArchiveHandler; 32 32 import org.openstreetmap.josm.plugins.opendata.modules.fr.datagouvfr.datasets.DataGouvDataSetHandler; 33 33 import org.openstreetmap.josm.tools.Pair; … … 66 66 public EauxDeSurfaceHandler() { 67 67 setName("Eaux de surface"); 68 set ZipHandler(new InternalZipHandler());68 setArchiveHandler(new InternalZipHandler()); 69 69 } 70 70 … … 126 126 } 127 127 128 private class InternalZipHandler extends Default ZipHandler {128 private class InternalZipHandler extends DefaultArchiveHandler { 129 129 @Override 130 130 public void notifyTempFileWritten(File file) { -
applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse/datasets/transport/ReseauTisseoHandler.java
r28554 r29679 34 34 setName("Réseau Tisséo (Métro, Bus, Tram)"); 35 35 setCategory(CAT_TRANSPORT); 36 get ZipHandler().setSkipXsdValidation(true);36 getArchiveHandler().setSkipXsdValidation(true); 37 37 } 38 38
Note:
See TracChangeset
for help on using the changeset viewer.