Changeset 34144 in osm


Ignore:
Timestamp:
2018-04-08T02:39:08+02:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 13597

Location:
applications/editors/josm/plugins/OSMRecPlugin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/OSMRecPlugin/build.xml

    r33800 r34144  
    33
    44    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    5     <property name="plugin.main.version" value="12859"/>
     5    <property name="plugin.main.version" value="13597"/>
    66    <property name="plugin.version" value="2.1"/>
    77
  • applications/editors/josm/plugins/OSMRecPlugin/src/org/openstreetmap/josm/plugins/osmrec/OSMRecPluginHelper.java

    r33800 r34144  
    125125import org.openstreetmap.josm.tools.Logging;
    126126import org.openstreetmap.josm.tools.Shortcut;
     127import org.openstreetmap.josm.tools.Utils;
    127128
    128129import com.vividsolutions.jts.geom.Coordinate;
     
    18131814         */
    18141815        public final void performTagAdding() {
    1815             String key = Tag.removeWhiteSpaces(keys.getEditor().getItem().toString());
    1816             String value = Tag.removeWhiteSpaces(values.getEditor().getItem().toString());
     1816            String key = Utils.removeWhiteSpaces(keys.getEditor().getItem().toString());
     1817            String value = Utils.removeWhiteSpaces(values.getEditor().getItem().toString());
    18171818            if (key.isEmpty() || value.isEmpty()) return;
    18181819            for (OsmPrimitive osm: sel) {
Note: See TracChangeset for help on using the changeset viewer.