Ignore:
Timestamp:
2013-04-16T20:18:30+02:00 (12 years ago)
Author:
donvip
Message:

[josm_plugins] Update plugins impacted by JOSM revision 5874 + fix various warnings

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  
    6060        }
    6161       
    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 {
    6364                File dataFile = getDataFile(headerFile, extension);
    6465                return dataFile.exists() ? new BufferedReader(new InputStreamReader(new FileInputStream(dataFile), charset)) : null;
Note: See TracChangeset for help on using the changeset viewer.