Changeset 30563 in osm for applications/editors/josm/plugins/opendata/modules/fr.paris/src
- Timestamp:
- 2014-08-05T13:53:46+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/opendata/modules/fr.paris/src/org/openstreetmap/josm/plugins/opendata/modules/fr/paris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/modules/fr.paris/src/org/openstreetmap/josm/plugins/opendata/modules/fr/paris/ParisConstants.java
r30340 r30563 2 2 package org.openstreetmap.josm.plugins.opendata.modules.fr.paris; 3 3 4 import org.openstreetmap.josm.plugins.opendata.core.OdConstants;5 4 6 public interface ParisConstants extends OdConstants{5 public interface ParisConstants { 7 6 8 7 /** -
applications/editors/josm/plugins/opendata/modules/fr.paris/src/org/openstreetmap/josm/plugins/opendata/modules/fr/paris/datasets/ParisShpHandler.java
r30340 r30563 14 14 import org.openstreetmap.josm.data.osm.OsmPrimitive; 15 15 import org.openstreetmap.josm.data.osm.Way; 16 import org.openstreetmap.josm.plugins.opendata.core.OdConstants; 16 17 import org.openstreetmap.josm.plugins.opendata.core.datasets.fr.FrenchShpHandler; 17 18 18 19 public class ParisShpHandler extends FrenchShpHandler { 19 20 20 public final Map<String, Node> nodeMap = new HashMap< String, Node>();21 public final Map<String, Node> nodeMap = new HashMap<>(); 21 22 22 23 protected OsmPrimitive dataPrimitive; … … 26 27 27 28 public ParisShpHandler() { 28 setDbfCharset(Charset.forName(CP850)); 29 setDbfCharset(Charset.forName(OdConstants.CP850)); 29 30 } 30 31 … … 55 56 dataPrimitive = null; 56 57 closedWay = null; 57 ways = new ArrayList< Way>();58 nodes = new ArrayList< Node>();58 ways = new ArrayList<>(); 59 nodes = new ArrayList<>(); 59 60 for (OsmPrimitive p : featurePrimitives) { 60 61 if (p.hasKeys()) {
Note:
See TracChangeset
for help on using the changeset viewer.