Skip to content

Commit

Permalink
no need to create a buffered reader from a buffered reader
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Sep 7, 2010
1 parent 568f883 commit ac37219
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -51,7 +51,7 @@ public boolean isOpen() {
}

public BufferedReader open() throws IOException {
reader = new BufferedReader(fileWriter.getReader());
reader = fileWriter.getReader();
return reader;
}

Expand Down

0 comments on commit ac37219

Please sign in to comment.