Changeset 2795 in josm for trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
- Timestamp:
- 2010-01-09T21:16:03+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
r2676 r2795 51 51 } 52 52 progressMonitor.setTicks(0); 53 GpxData currentGpx = new GpxReader(in, null).data; 53 GpxReader reader = new GpxReader(in); 54 reader.parse(false); 55 GpxData currentGpx = reader.data; 54 56 if (result == null) { 55 57 result = currentGpx;
Note:
See TracChangeset
for help on using the changeset viewer.
