Changeset 35650 in osm


Ignore:
Timestamp:
2020-11-23T16:35:44+01:00 (3 years ago)
Author:
Don-vip
Message:

see #20129 - update PBF plugin to JOSM 17334

Location:
applications/editors/josm/plugins/pbf
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pbf/build.xml

    r35604 r35650  
    33
    44    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    5     <property name="plugin.main.version" value="14699"/>
     5    <property name="plugin.main.version" value="17334"/>
    66
    77    <property name="plugin.author" value="Don-vip"/>
  • applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfPlugin.java

    r35634 r35650  
    55import org.openstreetmap.josm.gui.MainApplication;
    66import org.openstreetmap.josm.io.OverpassDownloadReader;
    7 import org.openstreetmap.josm.io.OverpassDownloadReader.OverpassOutpoutFormat;
     7import org.openstreetmap.josm.io.OverpassDownloadReader.OverpassOutputFormat;
    88import org.openstreetmap.josm.plugins.Plugin;
    99import org.openstreetmap.josm.plugins.PluginInformation;
     
    3232        MainApplication.getMenu().openLocation.addDownloadTaskClass(DownloadPbfTask.class);
    3333        // Alow JOSM to download PBF data from Overpass API
    34         OverpassDownloadReader.registerOverpassOutpoutFormatReader(OverpassOutpoutFormat.PBF, PbfReader.class);
     34        OverpassDownloadReader.registerOverpassOutputFormatReader(OverpassOutputFormat.PBF, PbfReader.class);
    3535    }
    3636}
Note: See TracChangeset for help on using the changeset viewer.