Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed Feb 22, 2017
1 parent f3545ea commit 541318f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ public void write(int value) throws IOException {
public void write(byte[] bytes) throws IOException {
file.write(bytes);
}

@Override
public void close() throws IOException {
file.close();
}
};
}

Expand Down

0 comments on commit 541318f

Please sign in to comment.