Index: trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java	(revision 8569)
+++ trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java	(revision 8570)
@@ -50,16 +50,16 @@
         verifyMercatorTile(testSource, 0, 0, 2);
         verifyMercatorTile(testSource, 1, 1, 2);
-        for(int x = 0; x < 4; x++) {
-            for(int y = 0; y < 4; y++) {
+        for (int x = 0; x < 4; x++) {
+            for (int y = 0; y < 4; y++) {
                 verifyMercatorTile(testSource, x, y, 3);
             }
         }
-        for(int x = 0; x < 8; x++) {
-            for(int y = 0; y < 4; y++) {
+        for (int x = 0; x < 8; x++) {
+            for (int y = 0; y < 4; y++) {
                 verifyMercatorTile(testSource, x, y, 4);
             }
         }
 
-        verifyMercatorTile(testSource, 2<<9 - 1, 2<<8 - 1, 10);
+        verifyMercatorTile(testSource, 2 << 9 - 1, 2 << 8 - 1, 10);
 
         assertEquals("TileXMax", 1, testSource.getTileXMax(1));
@@ -69,5 +69,4 @@
         assertEquals("TileXMax", 5, testSource.getTileXMax(3));
         assertEquals("TileYMax", 4, testSource.getTileYMax(3));
-
     }
 
@@ -87,16 +86,16 @@
         verifyMercatorTile(testSource, 0, 0, 2, zoomOffset);
         verifyMercatorTile(testSource, 1, 1, 2, zoomOffset);
-        for(int x = 0; x < 4; x++) {
-            for(int y = 0; y < 4; y++) {
+        for (int x = 0; x < 4; x++) {
+            for (int y = 0; y < 4; y++) {
                 verifyMercatorTile(testSource, x, y, 3, zoomOffset);
             }
         }
-        for(int x = 0; x < 8; x++) {
-            for(int y = 0; y < 4; y++) {
+        for (int x = 0; x < 8; x++) {
+            for (int y = 0; y < 4; y++) {
                 verifyMercatorTile(testSource, x, y, zoomOffset);
             }
         }
 
-        verifyMercatorTile(testSource, 2<<9 - 1, 2<<8 - 1, zoomOffset);
+        verifyMercatorTile(testSource, 2 << 9 - 1, 2 << 8 - 1, zoomOffset);
 
         assertEquals("TileXMax", 1, testSource.getTileXMax(1));
@@ -106,5 +105,4 @@
         assertEquals("TileXMax", 4, testSource.getTileXMax(3));
         assertEquals("TileYMax", 4, testSource.getTileYMax(3));
-
     }
 
@@ -113,6 +111,6 @@
         Main.setProjection(Projections.getProjectionByCode("EPSG:4326"));
         WMTSTileSource testSource = new WMTSTileSource(testImageryTOPO_PL);
-        verifyTile(new LatLon(56,12), testSource, 0, 0, 1);
-        verifyTile(new LatLon(56,12), testSource, 0, 0, 2);
+        verifyTile(new LatLon(56, 12), testSource, 0, 0, 1);
+        verifyTile(new LatLon(56, 12), testSource, 0, 0, 2);
         verifyTile(new LatLon(51.1268639, 16.8731360), testSource, 1, 1, 2);
 
