Changeset 9698 in josm for trunk/src/org
- Timestamp:
- 2016-01-31T14:38:57+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/CorrelateGpxWithImages.java
r9660 r9698 1176 1176 private static Double getElevation(WayPoint wp) { 1177 1177 String value = wp.getString(GpxConstants.PT_ELE); 1178 if (value != null ) {1178 if (value != null && !value.isEmpty()) { 1179 1179 try { 1180 1180 return new Double(value);
Note:
See TracChangeset
for help on using the changeset viewer.