Index: applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Help_WMSmenuAction.java
===================================================================
--- applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Help_WMSmenuAction.java	(revision 15940)
+++ applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Help_WMSmenuAction.java	(revision 15960)
@@ -12,43 +12,42 @@
 
     /**
-     * 
+     *
      */
-    
+
 
     public Help_WMSmenuAction() {
         //super("Help / About");
         super(tr("help"), "help", tr("Help / About"), null, false);
-        
+
     }
-    
+
     public void actionPerformed(ActionEvent e) {
-        //todo - put this into a txt file? 
-          String helptext = 
+        //todo - put this into a txt file?
+          String helptext =
             tr("You can add, edit and delete WMS entries in the WMSplugin Preference Tab - "  +
             "these will then show up in the WMS menu.\n\n"+
-            
+
             "You can also do this manually in the Advanced Preferences, using the following schema:\n"+
             "wmsplugin.url.1.name=Landsat\n"+
             "wmsplugin.url.1.url=http://onearth.jpl.nasa.gov....\n"+
             "wmsplugin.url.2.name=NPE Maps... etc\n\n"+
-                    
+
             "Full WMS URL input format example (landsat)\n"+
             "http://onearth.jpl.nasa.gov/wms.cgi?request=GetMap&\n"+
-            "layers=global_mosaic&styles=&srs=EPSG:4326&\n"+
-            "format=image/jpeg \n\n"+
-            
+            "layers=global_mosaic&styles=&srs=EPSG:4326&format=image/jpeg\n\n"+
+
             "For Metacarta's Map Rectifier http://labs.metacarta.com/rectifier/ , you only need to input the relevant 'id'.\n" +
-            "To add a Metacarta Map Rectifier menu item, manually create the URL like in this example," +
-            "replacing 73 with your image id: \n" +
+            "To add a Metacarta Map Rectifier menu item, manually create the URL like in this example, " +
+            "replacing 73 with your image id:\n" +
             "http://labs.metacarta.com/rectifier/wms.cgi?id=73\n" +
-            "&srs=EPSG:4326&Service=WMS&Version=1.1.0&Request=GetMap&format=image/png\n" +
-            " \n" +
+            "&srs=EPSG:4326&Service=WMS&Version=1.1.0&Request=GetMap&format=image/png\n\n" +
+
             "Note: Make sure the image is suitable, copyright-wise, if in doubt, don't use.");
-        
+
         JTextPane tp = new JTextPane();
           JScrollPane js = new JScrollPane(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                   JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
-         
-          
+
+
           js.getViewport().add(tp);
           JFrame jf = new JFrame(tr("WMS Plugin Help"));
@@ -56,5 +55,5 @@
           jf.pack();
           jf.setSize(400,500);
-          jf.setVisible(true); 
+          jf.setVisible(true);
           tp.setText(helptext);
     }
Index: applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSAdjustAction.java
===================================================================
--- applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSAdjustAction.java	(revision 15940)
+++ applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSAdjustAction.java	(revision 15960)
@@ -1,3 +1,3 @@
-package wmsplugin; 
+package wmsplugin;
 
 import static org.openstreetmap.josm.tools.I18n.tr;
@@ -25,6 +25,6 @@
 
     public WMSAdjustAction(MapFrame mapFrame) {
-        super(tr("Adjust WMS"), "adjustwms", 
-                        tr("Adjust the position of the selected WMS layer"), mapFrame, 
+        super(tr("Adjust WMS"), "adjustwms",
+                        tr("Adjust the position of the selected WMS layer"), mapFrame,
                         ImageProvider.getCursor("normal", "move"));
     }
@@ -45,5 +45,5 @@
         if (e.getButton() != MouseEvent.BUTTON1)
             return;
-        
+
         Layer layer=Main.map.mapView.getActiveLayer();
         if (layer.visible && layer instanceof WMSLayer) {
@@ -63,5 +63,5 @@
                     Main.map.mapView.getEastNorth(e.getX(),e.getY());
             selectedLayer.displace(
-                eastNorth.east()-prevEastNorth.east(), 
+                eastNorth.east()-prevEastNorth.east(),
                 eastNorth.north()-prevEastNorth.north()
             );
@@ -74,5 +74,5 @@
         Main.map.mapView.repaint();
         Main.map.mapView.setCursor(Cursor.getDefaultCursor());
-        selectedImage = null;   
+        selectedImage = null;
         prevEastNorth = null;
         selectedLayer = null;
@@ -88,5 +88,5 @@
     @Override public void mouseClicked(MouseEvent e) {
     }
-    
+
     // This only makes the buttons look disabled, but since no keyboard shortcut is
     // provided there aren't any other means to activate this tool
