Changeset 7033 in josm for trunk/src/org/openstreetmap/josm/io/Compression.java
- Timestamp:
- 2014-05-01T02:34:43+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/Compression.java
r6882 r7033 75 75 * @throws IOException 76 76 */ 77 @SuppressWarnings("resource") 77 78 public static InputStream getUncompressedFileInputStream(File file) throws IOException { 78 79 return byExtension(file.getName()).getUncompressedInputStream(new FileInputStream(file)); … … 114 115 * @throws IOException 115 116 */ 117 @SuppressWarnings("resource") 116 118 public static OutputStream getCompressedFileOutputStream(File file) throws IOException { 117 119 return byExtension(file.getName()).getCompressedOutputStream(new FileOutputStream(file));
Note:
See TracChangeset
for help on using the changeset viewer.
