Changeset 1911 in josm for trunk/src/org/openstreetmap/josm/data/gpx/GpxData.java
- Timestamp:
- 2009-08-05T10:05:50+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/GpxData.java
r1724 r1911 40 40 public Collection<WayPoint> waypoints = new LinkedList<WayPoint>(); 41 41 42 @SuppressWarnings("unchecked") 42 43 public void mergeFrom(GpxData other) { 43 44 if (storageFile == null && other.storageFile != null) { … … 51 52 if (k.equals(META_LINKS) && attr.containsKey(META_LINKS)) { 52 53 ((Collection<GpxLink>) attr.get(META_LINKS)).addAll( 53 (Collection<GpxLink>) ent.getValue()); 54 (Collection<GpxLink>) ent.getValue()); 54 55 } else { 55 56 attr.put(k, ent.getValue());
Note:
See TracChangeset
for help on using the changeset viewer.
