Index: applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java	(revision 12707)
+++ applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java	(revision 12778)
@@ -49,5 +49,5 @@
                 if (bounds.size() > 0) {
                     Way way = (Way) prim;
-                    // We check if each node of each way is at least in one download 
+                    // We check if each node of each way is at least in one download
                     // bounding box. Otherwise nodes may get deleted that are necessary by
                     // unloaded ways (see Ticket #1594)
@@ -83,5 +83,5 @@
             return;
         } else if (ways > 10) {
-        	//TRANSLATION: Although for English the use of trn is needless it is important for other languages
+            //TRANSLATION: Although for English the use of trn is needless it is important for other languages
             int option = JOptionPane.showConfirmDialog(Main.parent, trn(
                     "The selection contains {0} way. Are you sure you want to simplify it?",
Index: applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/UtilsPlugin.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/UtilsPlugin.java	(revision 12707)
+++ applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/UtilsPlugin.java	(revision 12778)
@@ -22,16 +22,16 @@
 
 public class UtilsPlugin extends Plugin {
-	JMenuItem SimplifyWay;
+    JMenuItem SimplifyWay;
 
-	public UtilsPlugin() {
-		SimplifyWay = MainMenu.add(Main.main.menu.toolsMenu, new SimplifyWayAction());
-		SimplifyWay.setEnabled(false);
-	}
-	
-	@Override
-	public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
-		if (oldFrame == null && newFrame != null) {
-			SimplifyWay.setEnabled(true);
-		}
-	}
+    public UtilsPlugin() {
+        SimplifyWay = MainMenu.add(Main.main.menu.toolsMenu, new SimplifyWayAction());
+        SimplifyWay.setEnabled(false);
+    }
+
+    @Override
+    public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
+        if (oldFrame == null && newFrame != null) {
+            SimplifyWay.setEnabled(true);
+        }
+    }
 }
