Changeset 11553 in josm for trunk/src/org/openstreetmap/josm/data/gpx/ImmutableGpxTrack.java
- Timestamp:
- 2017-02-12T16:32:18+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/ImmutableGpxTrack.java
r10906 r11553 70 70 @Override 71 71 public Bounds getBounds() { 72 if (bounds == null) 73 return null; 74 else 75 return new Bounds(bounds); 72 return bounds == null ? null : new Bounds(bounds); 76 73 } 77 74
Note:
See TracChangeset
for help on using the changeset viewer.
