Changeset 33460 in osm for applications/editors/josm/plugins/pt_assistant/src
- Timestamp:
- 2017-07-19T00:14:26+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/actions/AddStopPositionAction.java
r33451 r33460 129 129 } else { 130 130 newStopPos = new Node(n); 131 clearNodeTags(newStopPos);132 131 } 133 132 … … 243 242 } 244 243 245 private void clearNodeTags(Node newStopPos) {246 for (String key : newStopPos.keySet()) {247 newStopPos.put(key, null);248 }249 250 }251 252 244 private List<Relation> getPTRouteParents(Way way) { 253 245 List<Relation> referrers = OsmPrimitive.getFilteredList(
Note:
See TracChangeset
for help on using the changeset viewer.