Changeset 33153 in osm for applications/editors/josm/plugins/merge-overlap/src
- Timestamp:
- 2017-02-25T00:54:50+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapAction.java
r32471 r33153 1 1 package mergeoverlap; 2 2 3 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil. combineTigerTags;3 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.applyAutomaticTagConflictResolution; 4 4 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.completeTagCollectionForEditing; 5 5 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.normalizeTagCollectionBeforeEditing; … … 544 544 545 545 TagCollection completeWayTags = new TagCollection(wayTags); 546 combineTigerTags(completeWayTags);546 applyAutomaticTagConflictResolution(completeWayTags); 547 547 normalizeTagCollectionBeforeEditing(completeWayTags, ways); 548 548 TagCollection tagsToEdit = new TagCollection(completeWayTags);
Note:
See TracChangeset
for help on using the changeset viewer.