Changeset 35937 in osm for applications/editors/josm
- Timestamp:
- 2022-03-22T19:29:12+01:00 (3 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r35221 r35937 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). -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/OsmToCmd.java
r34656 r35937 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
Note:
See TracChangeset
for help on using the changeset viewer.