Changeset 25486 in osm for applications/editors/josm/plugins/editgpx/src/org
- Timestamp:
- 2011-03-02T21:09:14+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/data/EditGpxTrack.java
r25407 r25486 45 45 w.attr.put("time", "1970-01-01T00:00:00.000Z"); 46 46 w.setTime(); 47 if (w.attr.containsKey("name")) { 48 w.attr.put("name", "anon"); //time information can also be in "name" field. so delete time information 49 } 47 50 } 48 51 } 49 52 wayPoints.add(points); 50 53 } 54 } 55 } 56 if (anonTime) { 57 if (attributes.containsKey("name")) { 58 attributes.put("name", "anon");//time information can also be in "name" field. so delete time information 51 59 } 52 60 }
Note:
See TracChangeset
for help on using the changeset viewer.