Ignore:
Timestamp:
2015-05-18T23:34:11+02:00 (9 years ago)
Author:
Don-vip
Message:
  • global use of String.isEmpty()
  • Correctness - Method throws alternative exception from catch block without history
File:
1 edited

Legend:

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

    r8390 r8394  
    179179                    return new BufferedInputStream(new FileInputStream(file));
    180180                } catch (FileNotFoundException e) {
    181                     throw new IOException(tr("File ''{0}'' does not exist.", file.getPath()));
     181                    throw new IOException(tr("File ''{0}'' does not exist.", file.getPath()), e);
    182182                }
    183183            } else if (inZipPath != null) {
Note: See TracChangeset for help on using the changeset viewer.