Index: /trunk/src/org/openstreetmap/josm/io/CachedFile.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/io/CachedFile.java	(revision 8596)
+++ /trunk/src/org/openstreetmap/josm/io/CachedFile.java	(revision 8597)
@@ -215,15 +215,11 @@
             url = new URL(name);
             if ("file".equals(url.getProtocol())) {
-                System.out.println("file protocol");
                 cacheFile = new File(name.substring("file:/".length() - 1));
                 if (!cacheFile.exists()) {
                     cacheFile = new File(name.substring("file://".length() - 1));
-                    System.out.println(cacheFile.getPath());
-                }
-            } else {
-                System.out.println(url.getProtocol() + " doesnt equal file");
+                }
+            } else {
                 cacheFile = checkLocal(url);
             }
-            System.out.println(cacheFile.getPath());
         } catch (MalformedURLException e) {
             if (name.startsWith("resource://")) {
