Changeset 19352 in osm for applications/editors/josm/plugins/openvisible/src/at
- Timestamp:
- 2010-01-09T23:25:29+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java
r17536 r19352 120 120 GpxReader r = null; 121 121 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))); 123 123 } else{ 124 r = new GpxReader(new FileInputStream(file) , file.getAbsoluteFile().getParentFile());124 r = new GpxReader(new FileInputStream(file)); 125 125 } 126 126 r.data.storageFile = file;
Note:
See TracChangeset
for help on using the changeset viewer.