Changeset 33153 in osm for applications/editors
- Timestamp:
- 2017-02-25T00:54:50+01:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/merge-overlap
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/merge-overlap/build.xml
r32680 r33153 4 4 <property name="commit.message" value="MergeOverlap: help shortcut parser, rebuild"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 0580"/>6 <property name="plugin.main.version" value="11606"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
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.