Ignore:
Timestamp:
2017-02-25T01:08:38+01:00 (7 years ago)
Author:
donvip
Message:

see #josm14374 - update to JOSM 11606

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/WayCombiner.java

    r32545 r33155  
    22package org.openstreetmap.josm.plugins.opendata.core.datasets;
    33
    4 import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.combineTigerTags;
     4import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.applyAutomaticTagConflictResolution;
    55import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.completeTagCollectionForEditing;
    66import static org.openstreetmap.josm.gui.conflict.tags.TagConflictResolutionUtil.normalizeTagCollectionBeforeEditing;
     
    126126
    127127        TagCollection completeWayTags = new TagCollection(wayTags);
    128         combineTigerTags(completeWayTags);
     128        applyAutomaticTagConflictResolution(completeWayTags);
    129129        normalizeTagCollectionBeforeEditing(completeWayTags, ways);
    130130        TagCollection tagsToEdit = new TagCollection(completeWayTags);
Note: See TracChangeset for help on using the changeset viewer.