Index: /applications/editors/josm/plugins/pbf/build.xml
===================================================================
--- /applications/editors/josm/plugins/pbf/build.xml	(revision 32289)
+++ /applications/editors/josm/plugins/pbf/build.xml	(revision 32290)
@@ -3,5 +3,5 @@
 
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="7575"/>
+    <property name="plugin.main.version" value="10407"/>
 
     <property name="plugin.author" value="Don-vip"/>
Index: /applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfPlugin.java
===================================================================
--- /applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfPlugin.java	(revision 32289)
+++ /applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfPlugin.java	(revision 32290)
@@ -11,16 +11,19 @@
 
 /**
- * 
+ * PBF plugin.
  * @author Don-vip
- *
  */
 public class PbfPlugin extends Plugin {
 
+    /**
+     * Constructs a new {@code PbfPlugin}.
+     * @param info plugin information
+     */
     public PbfPlugin(PluginInformation info) {
         super(info);
         // Allow JOSM to import *.osm.pbf files
-        ExtensionFileFilter.importers.add(new PbfImporter());
+        ExtensionFileFilter.addImporter(new PbfImporter());
         // Allow JOSM to export *.osm.pbf files
-        ExtensionFileFilter.exporters.add(new PbfExporter());
+        ExtensionFileFilter.addExporter(new PbfExporter());
         // Allow JOSM to download remote *.osm.pbf files
         Main.main.menu.openLocation.addDownloadTaskClass(DownloadPbfTask.class);
