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

see #josm14374 - update to JOSM 11606

Location:
applications/editors/josm/plugins/opendata
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/.classpath

    r32680 r33155  
    2727        </classpathentry>
    2828        <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/>
     29        <classpathentry combineaccessrules="false" kind="src" path="/JOSM-EJML"/>
    2930        <classpathentry kind="output" path="bin"/>
    3031</classpath>
  • applications/editors/josm/plugins/opendata/build.xml

    r32900 r33155  
    11<?xml version="1.0" encoding="utf-8"?>
    22<project name="opendata" default="dist" basedir=".">
    3     <property name="plugin.main.version" value="10580"/>
     3    <property name="plugin.main.version" value="11606"/>
    44    <property name="plugin.author" value="Don-vip"/>
    55    <property name="plugin.class" value="org.openstreetmap.josm.plugins.opendata.OdPlugin"/>
  • 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.