Changeset 30701 in osm for applications/editors/josm/plugins/opendata/modules/fr.toulouse/src
- Timestamp:
- 2014-10-04T17:28:45+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse/ToulouseModule.java
r30340 r30701 113 113 114 114 private static final Collection<Relation> getBoundaries(int admin_level) { 115 Collection<Relation> result = new TreeSet< Relation>(new Comparator<Relation>() {115 Collection<Relation> result = new TreeSet<>(new Comparator<Relation>() { 116 116 @Override 117 117 public int compare(Relation o1, Relation o2) { -
applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse/datasets/transport/PistesCyclablesHandler.java
r30340 r30701 18 18 public class PistesCyclablesHandler extends ToulouseDataSetHandler { 19 19 20 protected final Map<String, Collection<String>> map = new HashMap< String, Collection<String>>();20 protected final Map<String, Collection<String>> map = new HashMap<>(); 21 21 22 22 private String streetField; -
applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse/datasets/urbanisme/NumerosRueHandler.java
r30340 r30701 27 27 @Override 28 28 public void updateDataSet(DataSet ds) { 29 Map<String, Relation> associatedStreets = new HashMap< String, Relation>();29 Map<String, Relation> associatedStreets = new HashMap<>(); 30 30 31 31 for (Node n : ds.getNodes()) { -
applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse/datasets/urbanisme/VoirieHandler.java
r30340 r30701 17 17 public class VoirieHandler extends ToulouseDataSetHandler { 18 18 19 protected final Map<String, Collection<String>> map = new HashMap< String, Collection<String>>();19 protected final Map<String, Collection<String>> map = new HashMap<>(); 20 20 21 21 private String streetField; … … 65 65 @Override 66 66 public void updateDataSet(DataSet ds) { 67 Map<String, Relation> associatedStreets = new HashMap< String, Relation>();67 Map<String, Relation> associatedStreets = new HashMap<>(); 68 68 69 69 for (Way w : ds.getWays()) {
Note:
See TracChangeset
for help on using the changeset viewer.