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

Commit 491e6ae

Browse files
committed
ignore io exception
1 parent c0375b7 commit 491e6ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/main/com/topcoder/direct/services/view/ajax/CustomFormatAJAXResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ private static void writeDataAndClose(InputStream in, OutputStream out) throws I
308308
}
309309
// flush output stream
310310
out.flush();
311-
} catch (SocketException e) {
311+
} catch (IOException e) {
312312
// The client side has aborted or closed connection
313313
} finally {
314314
// close the input stream

0 commit comments

Comments
 (0)