Ticket #21771: 21771.patch
| File 21771.patch, 1.3 KB (added by , 4 years ago) |
|---|
-
build.xml
3 3 <!-- enter the SVN commit message --> 4 4 <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 5502"/>6 <property name="plugin.main.version" value="17749"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). 9 9 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins -
src/org/openstreetmap/josm/plugins/commandline/OsmToCmd.java
329 329 330 330 String time = atts.getValue("timestamp"); 331 331 if (time != null && time.length() != 0) { 332 current.set Timestamp(DateUtils.fromString(time));332 current.setInstant(DateUtils.parseInstant(time)); 333 333 } 334 334 335 335 String user = atts.getValue("user");
