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

Commit d064a96

Browse files
authored
Merge pull request #579 from standlove/dev
ignore io exception
2 parents b662642 + 491e6ae commit d064a96

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

+1-1
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)