Ignore:
Timestamp:
2020-08-10T23:19:10+02:00 (4 years ago)
Author:
simon04
Message:

GpxImporter: compute markerLayerName

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/importexport/RtkLibImporter.java

    r15247 r16866  
    9191     * @param associatedFile RTKLib file
    9292     * @param gpxLayerName The GPX layer name
    93      * @param markerLayerName The marker layer name
    9493     * @return the new GPX and marker layers corresponding to the specified RTKLib file
    9594     * @throws IOException if an I/O error occurs
    9695     */
    9796    public static GpxImporterData loadLayers(InputStream is, final File associatedFile,
    98             final String gpxLayerName, String markerLayerName) throws IOException {
     97                                             final String gpxLayerName) throws IOException {
    9998        final RtkLibPosReader r = buildAndParse(is);
    10099        final boolean parsedProperly = r.getNumberOfCoordinates() > 0;
    101100        r.getGpxData().storageFile = associatedFile;
    102         return GpxImporter.loadLayers(r.getGpxData(), parsedProperly, gpxLayerName, markerLayerName);
     101        return GpxImporter.loadLayers(r.getGpxData(), parsedProperly, gpxLayerName);
    103102    }
    104103
Note: See TracChangeset for help on using the changeset viewer.