Ignore:
Timestamp:
2009-09-20T10:23:22+02:00 (15 years ago)
Author:
stoecker
Message:

fixed typos

File:
1 edited

Legend:

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

    r2032 r2163  
    5353    public void exportData(File file, Layer layer) throws IOException {
    5454        if (layer == null)
    55             throw new IllegalArgumentException(tr("paramenter ''{0}'' must not be null", "layer"));
     55            throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "layer"));
    5656        if (!(layer instanceof OsmDataLayer) && !(layer instanceof GpxLayer))
    5757            throw new IllegalArgumentException(tr("expected instance of OsmDataLayer or GpxLayer. Got ''{0}''.", layer
    5858                    .getClass().getName()));
    5959        if (file == null)
    60             throw new IllegalArgumentException(tr("paramenter ''{0}'' must not be null", "file"));
     60            throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "file"));
    6161
    6262        String fn = file.getPath();
Note: See TracChangeset for help on using the changeset viewer.