URLConnectionUtils.closeQuietly() complains loudly if servletConnection == null
-------------------------------------------------------------------------------
Key: COCOON3-46
URL: https://issues.apache.org/jira/browse/COCOON3-46
Project: Cocoon 3
Issue Type: Improvement
Components: cocoon-pipeline
Affects Versions: 3.0.0-alpha-2
Reporter: Jos Snellings
Assignee: Cocoon Developers Team
Priority: Minor
Fix For: 3.0.0-alpha-3
finally clause in URLResponse method execute()
contains call to URLConnectionUtils.closeQuietly.
If servletConnection = this.url.openConnection(); fails, servletConnection is
null.
In that case closeQuietly causes a stacktrace to be output.
Solution is if (servletConnection != null)
URLConnectionUtils.closeQuietly(servletConnection);, guard the call with a test,
or even better, take into account in closeQuietly that the input parameter may
be null.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.