Sebb created FILEUPLOAD-246:
-------------------------------

             Summary: FileUpload should use IOUtils.closeQuietly where relevant
                 Key: FILEUPLOAD-246
                 URL: https://issues.apache.org/jira/browse/FILEUPLOAD-246
             Project: Commons FileUpload
          Issue Type: Bug
            Reporter: Sebb


FileUpload already depends on Common IO, so it makes sense to simplify the code 
by using the method IOUtils#closeQuietly instead of code such as

{code}
if (out != null) {
    try {
        out.close();
    } catch (IOException e) {
        // ignore
    }
}
{code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

Reply via email to