Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Jun 26, 2016
1 parent 2cc2f40 commit 852bf08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/thegalactic/io/Filer.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void save(final E e, IOFactory factory, final String filename) throws IOE
* @throws IOException When an IOException occurs
*/
public void parse(final E e, IOFactory factory, final String filename) throws IOException {
BufferedReader file = new BufferedReader(new FileReader(filename));
final BufferedReader file = new BufferedReader(new FileReader(filename));
factory.getReader(Filer.getExtension(filename)).read(e, file);
file.close();
}
Expand Down

0 comments on commit 852bf08

Please sign in to comment.