Changeset 29505 in osm for applications/editors/josm/plugins/opendata
- Timestamp:
- 2013-04-16T20:18:30+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/opendata
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/build.xml
r29435 r29505 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <project name="opendata" default="dist" basedir="."> 3 <property name="plugin.main.version" value="5 631"/>3 <property name="plugin.main.version" value="5874"/> 4 4 <property name="plugin.author" value="Don-vip"/> 5 5 <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 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.