Changeset 8597 in josm


Ignore:
Timestamp:
2015-07-11T12:38:23+02:00 (9 years ago)
Author:
wiktorn
Message:

Removed unnecessary debug output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/CachedFile.java

    r8596 r8597  
    215215            url = new URL(name);
    216216            if ("file".equals(url.getProtocol())) {
    217                 System.out.println("file protocol");
    218217                cacheFile = new File(name.substring("file:/".length() - 1));
    219218                if (!cacheFile.exists()) {
    220219                    cacheFile = new File(name.substring("file://".length() - 1));
    221                     System.out.println(cacheFile.getPath());
    222                 }
    223             } else {
    224                 System.out.println(url.getProtocol() + " doesnt equal file");
     220                }
     221            } else {
    225222                cacheFile = checkLocal(url);
    226223            }
    227             System.out.println(cacheFile.getPath());
    228224        } catch (MalformedURLException e) {
    229225            if (name.startsWith("resource://")) {
Note: See TracChangeset for help on using the changeset viewer.