Skip to content

Commit

Permalink
append on NIO writes
Browse files Browse the repository at this point in the history
  • Loading branch information
kpwebb committed Feb 12, 2018
1 parent 0865ba1 commit 263d26e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected class NIOFileObject {
NIOFileObject(String filePath) throws IOException {

try {
stream = new FileOutputStream(filePath);
stream = new FileOutputStream(filePath, true);
channel = stream.getChannel();
} catch(Exception ex) {

Expand Down
Empty file.

0 comments on commit 263d26e

Please sign in to comment.