Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ public AtomicFileOutputStream(File outFile, File tmpFile) throws IOException {
this.tmpFile = tmpFile.getAbsoluteFile();
}

@Override
public void write(byte[] b, int off, int len) throws IOException {
out.write(b, off, len);
}

public boolean isClosed() {
return isClosed.get();
}
Expand Down
Loading