Changeset 35490 in osm for applications
- Timestamp:
- 2020-06-11T11:58:27+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/ReadPostprocessor.java
r34470 r35490 62 62 63 63 for (OsmPrimitive p : ds.allPrimitives()) { 64 p.accept(adder); 64 if (!p.isNew()) { 65 p.accept(adder); 66 } 67 } 68 69 if (nodeList.isEmpty() && wayList.isEmpty() && relationList.isEmpty()) { 70 return; 65 71 } 66 72
Note:
See TracChangeset
for help on using the changeset viewer.