Index: trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java	(revision 13699)
+++ trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java	(revision 13702)
@@ -113,8 +113,4 @@
     }
 
-    private static EastNorth getRoundedToOsmPrecision(double east, double north) {
-        return new EastNorth(LatLon.roundToOsmPrecision(east), LatLon.roundToOsmPrecision(north));
-    }
-
     private static List<TestData> readData() throws IOException, FileNotFoundException {
         try (BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(PROJECTION_DATA_FILE),
Index: trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java	(revision 13699)
+++ trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java	(revision 13702)
@@ -15,4 +15,7 @@
 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 
+/**
+ * Unit tests for the Swiss projection grid.
+ */
 public class SwissGridTest {
     private static final String SWISS_EPSG_CODE = "EPSG:21781";
@@ -80,4 +83,7 @@
     }
 
+    /**
+     * Test projection accuracy.
+     */
     @Test
     public void testProjReferenceTestAccurate() {
@@ -85,4 +91,7 @@
     }
 
+    /**
+     * Unit test A: lat/lon => east/north
+     */
     @Test
     public void testAlatlon2eastNorth() {
@@ -129,4 +138,7 @@
     }
 
+    /**
+     * Unit test B: east/north => lat/lon
+     */
     @Test
     public void testBeastNorth2latlon() {
