Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

fix #583

Merged
merged 1 commit into from
Dec 21, 2022
Merged

fix #583

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 @@ -301,7 +301,7 @@ public void execute(ActionInvocation invocation) throws AJAXDataPreProcessingExc
* @throws IOException
* if any io error happens
*/
private static void writeDataAndClose(InputStream in, OutputStream out) throws IOException {
private void writeDataAndClose(InputStream in, OutputStream out) throws IOException {
try {
// Write input stream to output stream
byte[] buf = new byte[BUFFER_SIZE];
Expand Down