Index: applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/EleVertexTest.java
===================================================================
--- applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/EleVertexTest.java	(revision 32351)
+++ applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/EleVertexTest.java	(revision 32775)
@@ -4,6 +4,4 @@
 import java.awt.Color;
 import java.util.List;
-
-import junit.framework.TestCase;
 
 import org.openstreetmap.josm.Main;
@@ -13,4 +11,6 @@
 import org.openstreetmap.josm.plugins.elevation.grid.EleCoordinate;
 import org.openstreetmap.josm.plugins.elevation.grid.EleVertex;
+
+import junit.framework.TestCase;
 
 public class EleVertexTest extends TestCase {
@@ -62,5 +62,5 @@
 
     private void recurse(EleVertex v, int depth) {
-        if (!v.isFinished() && depth <100) {
+        if (!v.isFinished() && depth < 100) {
             System.out.println("\tDivide: " + v);
             List<EleVertex> list = v.divide();
@@ -90,5 +90,5 @@
 
     public void testColorMap() {
-        ColorMap testMap  = ColorMap.create("Test", new Color[]{Color.white, Color.black}, new int[]{0, 1000});
+        ColorMap testMap = ColorMap.create("Test", new Color[]{Color.white, Color.black}, new int[]{0, 1000});
 
         // range test
Index: applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/HgtReaderTest.java
===================================================================
--- applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/HgtReaderTest.java	(revision 32351)
+++ applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/HgtReaderTest.java	(revision 32775)
@@ -67,5 +67,5 @@
         assertFalse("Data missing or void for coor " + l, Double.isNaN(d));
 
-        assertEquals((int)d, expHeight);
+        assertEquals((int) d, expHeight);
     }
 }
