Changeset 3041 in josm for trunk/src


Ignore:
Timestamp:
2010-02-25T12:48:47+01:00 (14 years ago)
Author:
stoecker
Message:

fixed #4613 - icon updates

File:
1 edited

Legend:

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

    r3011 r3041  
    102102            }
    103103        } catch (Exception e) {
    104             System.err.println(tr("Warning: failed to open file with extension ''{2}'' and namepart ''{3}'' in zip file ''{0}''. Exception was: {1}", file.getName(), e.toString(), extension, namepart));
     104            if(file.getName().endsWith(".zip")) {
     105                System.err.println(tr("Warning: failed to open file with extension ''{2}'' and namepart ''{3}'' in zip file ''{0}''. Exception was: {1}",
     106                file.getName(), e.toString(), extension, namepart));
     107            }
    105108        }
    106109        return res;
Note: See TracChangeset for help on using the changeset viewer.