Index: trunk/src/org/openstreetmap/josm/io/NmeaReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/NmeaReader.java	(revision 9739)
+++ trunk/src/org/openstreetmap/josm/io/NmeaReader.java	(revision 9740)
@@ -20,5 +20,4 @@
 import org.openstreetmap.josm.data.gpx.ImmutableGpxTrack;
 import org.openstreetmap.josm.data.gpx.WayPoint;
-import org.openstreetmap.josm.tools.date.DateUtils;
 
 /**
@@ -287,5 +286,5 @@
                     // As this sentence has no complete time only use it
                     // if there is no time so far
-                    currentwp.put(GpxConstants.PT_TIME, DateUtils.fromDate(d));
+                    currentwp.setTime(d);
                 }
                 // elevation
@@ -398,5 +397,5 @@
                 }
                 // time: this sentence has complete time so always use it.
-                currentwp.put(GpxConstants.PT_TIME, DateUtils.fromDate(d));
+                currentwp.setTime(d);
                 // speed
                 accu = e[GPRMC.SPEED.position];
