Changeset 34997 in osm for applications/editors/josm/plugins/opendata/src
- Timestamp:
- 2019-05-05T20:27:25+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/ShpReader.java
r34911 r34997 155 155 Geometry g = gc.getGeometryN(i); 156 156 if (g instanceof Polygon) { 157 // TODO: Split this section between Polygon and MultiPolygon. 157 158 Relation r = (Relation) op; 158 159 Polygon p = (Polygon) g; … … 170 171 } 171 172 } 173 op = r != null ? r : w; 172 174 } else if (g instanceof LineString) { 173 175 op = createOrGetWay((LineString) g);
Note:
See TracChangeset
for help on using the changeset viewer.