Eric Jablow (JIRA)
Mon, 23 Nov 2009 13:06:03 -0800
DownloadAttachmentServlet should use IOUtils.closeQueitly ---------------------------------------------------------
Key: HUPA-54
URL: https://issues.apache.org/jira/browse/HUPA-54
Project: JAMES Hupa
Issue Type: Improvement
Components: server
Affects Versions: 0.1
Reporter: Eric Jablow
Assignee: Norman Maurer
Priority: Trivial
DownloadAttachmentServlet contains two blocks of code like:
if (in != null) {
try {
in.close()
} catch(IOException e) {
// Ignored
}
}
This project uses Apache Commons IO; it should use
IOUtils.closeQuietly(InputStream s) and the corresponding output stream
version. I have made a small patch.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org