Ignore:
Timestamp:
2010-01-09T21:16:03+01:00 (16 years ago)
Author:
jttt
Message:

Allow to load incomplete gpx files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java

    r2676 r2795  
    5151                }
    5252                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;
    5456                if (result == null) {
    5557                    result = currentGpx;
Note: See TracChangeset for help on using the changeset viewer.