Changeset 14448 in josm
- Timestamp:
- 2018-11-25T12:55:56+01:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/gpx/ConvertFromGpxLayerAction.java
r14446 r14448 43 43 44 44 private static final String GPX_SETTING = "gpx.convert-tags"; 45 private final DateFormat timeFormatter = DateUtils.getGpxFormat();46 45 47 46 /** … … 83 82 Date date = (Date) obj; 84 83 if (!none) { //... but the tag will only be set when required 85 n.put(key, timeFormatter.format(date));84 n.put(key, DateUtils.fromDate(date)); 86 85 } 87 86 n.setTimestamp(date); -
trunk/src/org/openstreetmap/josm/io/GpxWriter.java
r14243 r14448 37 37 */ 38 38 public class GpxWriter extends XmlWriter implements GpxConstants { 39 40 private final DateFormat gpxFormat = DateUtils.getGpxFormat();41 39 42 40 /** … … 121 119 Object val = obj.get(key); 122 120 if (val instanceof Date) { 123 simpleTag(key, gpxFormat.format(val));121 simpleTag(key, DateUtils.fromDate((Date) val)); 124 122 } else if (val instanceof Number) { 125 123 simpleTag(key, val.toString());
Note:
See TracChangeset
for help on using the changeset viewer.