Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryDialog.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryDialog.java	(revision 30951)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryDialog.java	(revision 31041)
@@ -1,4 +1,4 @@
 /**
- * 
+ *
  */
 package org.openstreetmap.josm.plugins.mapillary;
@@ -10,17 +10,11 @@
 import java.awt.Insets;
 import java.awt.event.ActionListener;
-import java.util.Enumeration;
-import java.util.LinkedList;
-import java.util.List;
 
 import javax.swing.JButton;
 import javax.swing.JCheckBox;
 import javax.swing.JComboBox;
-import javax.swing.JDialog;
 import javax.swing.JLabel;
-import javax.swing.JList;
 import javax.swing.JOptionPane;
 import javax.swing.JPanel;
-import javax.swing.ListCellRenderer;
 
 import org.openstreetmap.josm.Main;
@@ -36,5 +30,5 @@
     private JCheckBox delete;
     private JComboBox portCombo;
-    
+
 
     public MapillaryDialog() {
@@ -45,5 +39,5 @@
 
         portCombo = new JComboBox();
-        
+
         refreshPorts();
         c.insets = new Insets(4,4,4,4);
@@ -63,5 +57,6 @@
         refreshBtn = new JButton(tr("Refresh"));
         refreshBtn.addActionListener(new ActionListener(){
-                public void actionPerformed(java.awt.event.ActionEvent e){
+                @Override
+				public void actionPerformed(java.awt.event.ActionEvent e){
                     refreshPorts();
                 }
@@ -77,11 +72,12 @@
         configBtn = new JButton(tr("Configure"));
         configBtn.addActionListener(new ActionListener(){
-                public void actionPerformed(java.awt.event.ActionEvent e){
-                    System.out.println("configureing the device");
+                @Override
+				public void actionPerformed(java.awt.event.ActionEvent e){
+                    System.out.println("configuring the device");
                     try{
 
-                       
-                       
-                      
+
+
+
 
                     }catch(Exception ex){
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryPlugin.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryPlugin.java	(revision 30951)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryPlugin.java	(revision 31041)
@@ -1,34 +1,25 @@
 package org.openstreetmap.josm.plugins.mapillary;
 
-import java.util.ArrayList;
-
-import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.gui.MapFrame;
-import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
 import org.openstreetmap.josm.plugins.Plugin;
 import org.openstreetmap.josm.plugins.PluginInformation;
 
-import org.openstreetmap.josm.gui.layer.geoimage.GeoImageLayer;
-import org.openstreetmap.josm.gui.layer.geoimage.ImageDisplay;
-import org.openstreetmap.josm.gui.layer.geoimage.ImageEntry;
-import org.openstreetmap.josm.gui.layer.geoimage.ImageViewerDialog;
-
 /**
  * This is the main class for the mapillary plugin.
- * 
+ *
  */
 public class MapillaryPlugin extends Plugin{
-	
+
     public MapillaryPlugin(PluginInformation info) {
         super(info);
     }
-    
+
     /**
-     * Called when the JOSM map frame is created or destroyed. 
+     * Called when the JOSM map frame is created or destroyed.
      */
     @Override
-    public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {             
+    public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
         if (oldFrame == null && newFrame != null) { // map frame added
-        	
+
         }
     }
