Index: /applications/editors/josm/plugins/slippymap/slippymap/SlippyMapTile.java
===================================================================
--- /applications/editors/josm/plugins/slippymap/slippymap/SlippyMapTile.java	(revision 5666)
+++ /applications/editors/josm/plugins/slippymap/slippymap/SlippyMapTile.java	(revision 5667)
@@ -14,13 +14,13 @@
 /**
  * Class that contains information about one single slippy map tile.
- * 
+ *
  * @author Frederik Ramm <frederik@remote.org>
  *
  */
-public class SlippyMapTile 
+public class SlippyMapTile
 {
 
 	private Image tileImage;
-	
+
 	int x;
 	int y;
@@ -28,6 +28,6 @@
 
     private String metadata;
-	
-	public SlippyMapTile(int x, int y, int z) 
+
+	public SlippyMapTile(int x, int y, int z)
 	{
 		this.x = x;
@@ -35,23 +35,20 @@
 		this.z = z;
 	}
-	
+
 	public String getMetadata()
 	{
 		return metadata;
 	}
-	
+
 	public void loadImage()
 	{
 		try
 		{
-			// tileImage = new ImageIcon(new URL("http://dev.openstreetmap.org/~ojw/Tiles/tile.php/"+z+"/"+x+"/"+y+".png"));
-			//tileImage = Toolkit.getDefaultToolkit().createImage(new URL("http://openstreetmap.gryph.de/slippymap/tiles/"+z+"/"+x+"/"+y+".png"));
-			tileImage = Toolkit.getDefaultToolkit().createImage(new URL("http://dev.openstreetmap.org/~ojw/Tiles/tile.php/"+z+"/"+x+"/"+y+".png"));
-//				
+			tileImage = Toolkit.getDefaultToolkit().createImage(new URL("http://tah.openstreetmap.org/Tiles/tile/"+z+"/"+x+"/"+y+".png"));
 		}
 		catch (MalformedURLException mfu)
 		{
 			mfu.printStackTrace();
-		}		
+		}
 	}
 
@@ -60,8 +57,8 @@
 		return tileImage;
 	}
-	
+
 	public void loadMetadata()
 	{
-        try 
+        try
         {
             URL dev = new URL("http://tah.openstreetmap.org/Tiles/info_short.php?x=" +
@@ -93,5 +90,5 @@
         }
     }
-	
+
 	public boolean equals(Object o)
 	{
@@ -100,4 +97,4 @@
 		return (this.x == other.x && this.y == other.y && this.z == other.z);
 	}
-	
+
 }
