- Timestamp:
- 2021-08-04T21:36:51+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/GpxImageEntry.java
r18065 r18120 11 11 import java.util.Locale; 12 12 import java.util.Objects; 13 import java.util.Optional;14 13 import java.util.function.Consumer; 15 14 … … 779 778 if (position != null) { 780 779 wpt = new WayPoint(position); 781 wpt.setInstant( Optional.ofNullable(exifGpsTime).orElse(exifTime));780 wpt.setInstant(exifTime); 782 781 Double ele = getElevation(); 783 782 if (ele != null) {
Note:
See TracChangeset
for help on using the changeset viewer.