Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangggg committed Oct 24, 2023
1 parent 5f90080 commit 7c36e46
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ Path copyRecordingToFile(
continue;
}
try (conn;
OutputStream out = new BufferedOutputStream(new FileOutputStream(path.toFile()));
OutputStream out =
new BufferedOutputStream(new FileOutputStream(path.toFile()));
InputStream in = conn.getService().openStream(rec, false)) {
byte[] buff = new byte[READ_BUFFER_SIZE];
int n = 0;
Expand Down

0 comments on commit 7c36e46

Please sign in to comment.