Changeset 33155 in osm for applications/editors/josm/plugins/opendata/src/org
- Timestamp:
- 2017-02-25T01:08:38+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/WayCombiner.java
r32545 r33155 2 2 package org.openstreetmap.josm.plugins.opendata.core.datasets; 3 3 4 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil. combineTigerTags;4 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.applyAutomaticTagConflictResolution; 5 5 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.completeTagCollectionForEditing; 6 6 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.normalizeTagCollectionBeforeEditing; … … 126 126 127 127 TagCollection completeWayTags = new TagCollection(wayTags); 128 combineTigerTags(completeWayTags);128 applyAutomaticTagConflictResolution(completeWayTags); 129 129 normalizeTagCollectionBeforeEditing(completeWayTags, ways); 130 130 TagCollection tagsToEdit = new TagCollection(completeWayTags);
Note:
See TracChangeset
for help on using the changeset viewer.