Changeset 29505 in osm for applications/editors/josm/plugins/opendata/src/org
- Timestamp:
- 2013-04-16T20:18:30+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/AbstractMapInfoReader.java
r28191 r29505 60 60 } 61 61 62 protected final BufferedReader getDataReader(File headerFile, String extension, Charset charset) throws FileNotFoundException { 62 @SuppressWarnings("resource") 63 protected final BufferedReader getDataReader(File headerFile, String extension, Charset charset) throws FileNotFoundException { 63 64 File dataFile = getDataFile(headerFile, extension); 64 65 return dataFile.exists() ? new BufferedReader(new InputStreamReader(new FileInputStream(dataFile), charset)) : null;
Note:
See TracChangeset
for help on using the changeset viewer.