Ignore:
Timestamp:
2010-01-09T23:25:29+01:00 (15 years ago)
Author:
stoecker
Message:

updated to current josm state

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java

    r17536 r19352  
    120120            GpxReader r = null;
    121121            if (file.getName().endsWith(".gpx.gz")) {
    122                 r = new GpxReader(new GZIPInputStream(new FileInputStream(file)), file.getAbsoluteFile().getParentFile());
     122                r = new GpxReader(new GZIPInputStream(new FileInputStream(file)));
    123123            } else{
    124                 r = new GpxReader(new FileInputStream(file), file.getAbsoluteFile().getParentFile());
     124                r = new GpxReader(new FileInputStream(file));
    125125            }
    126126            r.data.storageFile = file;
Note: See TracChangeset for help on using the changeset viewer.