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

update to JOSM 13597

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

Legend:

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

    r33808 r34149  
    55    <property name="commit.message" value="Commit message"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="12900"/>
     7    <property name="plugin.main.version" value="13597"/>
    88    <property name="plugin.canloadatruntime" value="true"/>
    99
  • applications/editors/josm/plugins/wikipedia/src/org/wikipedia/gui/WikidataItemSearchDialog.java

    r34095 r34149  
    3131import org.openstreetmap.josm.gui.util.GuiHelper;
    3232import org.openstreetmap.josm.tools.GBC;
     33import org.openstreetmap.josm.tools.Utils;
    3334import org.wikipedia.WikipediaApp;
    3435import org.wikipedia.data.WikidataEntry;
     
    105106            return;
    106107        }
    107         final String key = Tag.removeWhiteSpaces(targetKey.getEditor().getItem().toString());
     108        final String key = Utils.removeWhiteSpaces(targetKey.getEditor().getItem().toString());
    108109        final String value = selected.createWikipediaTag().getValue();
    109110        WikipediaToggleDialog.AddWikipediaTagAction.addTag(new Tag(key, value));
Note: See TracChangeset for help on using the changeset viewer.