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

Location:
applications/editors/josm/plugins/opendata
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/build.xml

    r29435 r29505  
    11<?xml version="1.0" encoding="utf-8"?>
    22<project name="opendata" default="dist" basedir=".">
    3     <property name="plugin.main.version" value="5631"/>
     3    <property name="plugin.main.version" value="5874"/>
    44    <property name="plugin.author" value="Don-vip"/>
    55    <property name="plugin.class" value="org.openstreetmap.josm.plugins.opendata.OdPlugin"/>
  • 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.