Index: trunk/src/org/openstreetmap/josm/tools/ImageWarp.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/ImageWarp.java	(revision 11895)
+++ trunk/src/org/openstreetmap/josm/tools/ImageWarp.java	(revision 11896)
@@ -117,6 +117,6 @@
         // border strategy: continue with the color of the outermost pixel,
         // but change alpha component to fully translucent
-        int a = Utils.clamp(x, 0, img.getWidth() - 1);// clamp(x, img.getWidth());
-        int b = Utils.clamp(y, 0, img.getHeight() - 1); // clamp(y, img.getHeight());
+        int a = Utils.clamp(x, 0, img.getWidth() - 1);
+        int b = Utils.clamp(y, 0, img.getHeight() - 1);
         int clr = img.getRGB(a, b);
         if (a == x && b == y)
