- Timestamp:
- 2017-06-25T16:48:20+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/nmea/NmeaReader.java
r12434 r12435 13 13 import java.util.Collections; 14 14 import java.util.Date; 15 import java.util.Locale; 15 16 import java.util.Optional; 16 17 … … 131 132 public GpxData data; 132 133 133 private final SimpleDateFormat rmcTimeFmt = new SimpleDateFormat("ddMMyyHHmmss.SSS"); 134 private final SimpleDateFormat rmcTimeFmtStd = new SimpleDateFormat("ddMMyyHHmmss"); 134 private final SimpleDateFormat rmcTimeFmt = new SimpleDateFormat("ddMMyyHHmmss.SSS", Locale.ENGLISH); 135 private final SimpleDateFormat rmcTimeFmtStd = new SimpleDateFormat("ddMMyyHHmmss", Locale.ENGLISH); 135 136 136 137 private Date readTime(String p) {
Note:
See TracChangeset
for help on using the changeset viewer.