Ignore:
Timestamp:
2012-07-25T02:31:52+02:00 (12 years ago)
Author:
Don-vip
Message:

fix #7879 - Allow to open local and remote gzipped/bzipped osmChange files + remote osm.gz files + make some public constants of File filters to share between same importers/exporters

File:
1 edited

Legend:

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

    r5324 r5361  
    151151        return null;
    152152    }
    153    
     153
     154    public DataSet parseOsmChangeBzip2(final ProgressMonitor progressMonitor) throws OsmTransferException {
     155        return null;
     156    }
     157
     158    public DataSet parseOsmChangeGzip(final ProgressMonitor progressMonitor) throws OsmTransferException {
     159        return null;
     160    }
     161
    154162    public GpxData parseRawGps(final ProgressMonitor progressMonitor) throws OsmTransferException {
    155163        return null;
     
    159167        return null;
    160168    }
    161    
     169
     170    public DataSet parseOsmGzip(final ProgressMonitor progressMonitor) throws OsmTransferException {
     171        return null;
     172    }
     173
    162174    /**
    163175     * Returns true if this reader is adding authentication credentials to the read
Note: See TracChangeset for help on using the changeset viewer.