Index: applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapLayer.java
===================================================================
--- applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapLayer.java	(revision 16457)
+++ applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapLayer.java	(revision 16458)
@@ -577,17 +577,15 @@
 		if (ts.tilesSpanned() > (18*18)) {
 			System.out.println("too many tiles, decreasing zoom from " + currentZoomLevel);
-			if (decreaseZoomLevel()) {
+            if (decreaseZoomLevel())
 				this.paint(oldg, mv);
-			}
-			return;
-		}//end of if more than 18*18
+            return;
+	    }
 		
 		if (ts.tilesSpanned() <= 0) {
 			System.out.println("doesn't even cover one tile, increasing zoom from " + currentZoomLevel);
-			if (increaseZoomLevel()) {
-				this.paint(oldg, mv);
-			}
-			return;
-		}
+            if (increaseZoomLevel())
+                 this.paint(oldg, mv);
+            return;
+        }
 
 		int fontHeight = g.getFontMetrics().getHeight();
