Changeset 14068 in josm for trunk/src/org
- Timestamp:
- 2018-08-01T00:08:06+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/WayPoint.java
r14055 r14068 163 163 try { 164 164 final Object obj = get(PT_TIME); 165 final Date time = obj instanceof Date ? (Date) obj : DateUtils.fromString(obj.toString());166 t his.time = time.getTime() / 1000.;167 return time;165 final Date date = obj instanceof Date ? (Date) obj : DateUtils.fromString(obj.toString()); 166 time = date.getTime() / 1000.; 167 return date; 168 168 } catch (UncheckedParseException e) { 169 169 Logging.warn(e); -
trunk/src/org/openstreetmap/josm/gui/progress/swing/ProgressMonitorExecutor.java
r14052 r14068 51 51 t = cancellationException; 52 52 } catch (ExecutionException executionException) { 53 Logging.trace(executionException); 53 54 t = executionException.getCause(); 54 55 } catch (InterruptedException interruptedException) {
Note:
See TracChangeset
for help on using the changeset viewer.