Index: applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java
===================================================================
--- applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java	(revision 30735)
+++ applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java	(revision 32287)
@@ -28,13 +28,13 @@
 
     /**
-     * Action showing bounds of the selected closed ways in Selection dialog 
+     * Action showing bounds of the selected closed ways in Selection dialog
      */
     private final ShowBoundsAction selectionListAction = new ShowBoundsAction();
 
     /**
-     * Action showing bounds of the selected multipolygons in Properties dialog 
+     * Action showing bounds of the selected multipolygons in Properties dialog
      */
     private final ShowBoundsAction propertiesListAction = new ShowBoundsAction();
-    
+
     /**
      * Action showing bounds of the selected multipolygons in Relations dialog
@@ -46,10 +46,10 @@
      */
     private final ShowBoundsSelectionAction selectionAction = new ShowBoundsSelectionAction();
-    
+
     /**
      * Class modifying the Imagery preferences panel
      */
     private final XmlBoundsPreferenceSetting preferenceSetting = new XmlBoundsPreferenceSetting();
-    
+
     /**
      * Initializes the plugin.
@@ -59,7 +59,7 @@
         super(info);
         // Allow JOSM to import *.imagery.xml files
-        ExtensionFileFilter.importers.add(0, new XmlBoundsImporter());
+        ExtensionFileFilter.addImporterFirst(new XmlBoundsImporter());
         // Allow JOSM to export *.imagery.xml files
-        ExtensionFileFilter.exporters.add(0, new XmlBoundsExporter());
+        ExtensionFileFilter.addExporterFirst(new XmlBoundsExporter());
         // Initialize the selection action
         DataSet.addSelectionListener(selectionAction);
@@ -68,5 +68,5 @@
         Main.main.menu.openLocation.addDownloadTaskClass(DownloadXmlBoundsTask.class);
     }
-    
+
     @Override
     public PreferenceSetting getPreferenceSetting() {
@@ -77,5 +77,5 @@
     public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
         if (newFrame != null) {
-            // Initialize dialogs actions only after the main frame is created 
+            // Initialize dialogs actions only after the main frame is created
             newFrame.selectionListDialog.getPopupMenuHandler().addSeparator();
             newFrame.selectionListDialog.getPopupMenuHandler().addAction(selectionListAction);
