Changeset 1975 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2009-08-13T12:46:30+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/GpxWriter.java
r1947 r1975 67 67 String k = ent.getKey(); 68 68 if (k.equals(GpxData.META_LINKS)) { 69 for ( GpxLinklink : (Collection<GpxLink>) ent.getValue()) {70 gpxLink(link); 69 for (Object link : (Collection) ent.getValue()) { 70 gpxLink((GpxLink) link); 71 71 } 72 72 } else { … … 116 116 // write links 117 117 if(attr.containsKey(GpxData.META_LINKS)) { 118 for ( GpxLinklink : (Collection<GpxLink>) attr.get(GpxData.META_LINKS)) {119 gpxLink(link); 118 for (Object link : (Collection) attr.get(GpxData.META_LINKS)) { 119 gpxLink((GpxLink) link); 120 120 } 121 121 }
Note:
See TracChangeset
for help on using the changeset viewer.