Changeset 34144 in osm
- Timestamp:
- 2018-04-08T02:39:08+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/OSMRecPlugin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/OSMRecPlugin/build.xml
r33800 r34144 3 3 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value="1 2859"/>5 <property name="plugin.main.version" value="13597"/> 6 6 <property name="plugin.version" value="2.1"/> 7 7 -
applications/editors/josm/plugins/OSMRecPlugin/src/org/openstreetmap/josm/plugins/osmrec/OSMRecPluginHelper.java
r33800 r34144 125 125 import org.openstreetmap.josm.tools.Logging; 126 126 import org.openstreetmap.josm.tools.Shortcut; 127 import org.openstreetmap.josm.tools.Utils; 127 128 128 129 import com.vividsolutions.jts.geom.Coordinate; … … 1813 1814 */ 1814 1815 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()); 1817 1818 if (key.isEmpty() || value.isEmpty()) return; 1818 1819 for (OsmPrimitive osm: sel) {
Note:
See TracChangeset
for help on using the changeset viewer.