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 9a3053d commit d4cb50f
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 @@ -86,7 +86,7 @@ public void save(final E e, final IOFactory factory, final String filename) thro
*
* @throws IOException When an IOException occurs
*/
public void parse(final E e, IOFactory factory, final String filename) throws IOException {
public void parse(final E e, final IOFactory factory, final String filename) throws IOException {
final BufferedReader file = new BufferedReader(new FileReader(filename));
factory.getReader(Filer.getExtension(filename)).read(e, file);
file.close();
Expand Down

0 comments on commit d4cb50f

Please sign in to comment.