[ 
https://issues.apache.org/jira/browse/WW-4546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukasz Lenart updated WW-4546:
------------------------------
    Description: 
In method execute() of class XSLTResult.java 
(src\core\src\main\java\org\apache\struts2\views\xslt\XSLTResult.java).

The instantiation of PrintWriter should be closed after all writing is done.
{code:java}
  public void execute(ActionInvocation invocation) throws Exception {
        …
        PrintWriter writer = response.getWriter();
...
 writer.flush(); // ...and flush...
}
{code}

  was:
In method execute() of class XSLTResult.java 
(src\core\src\main\java\org\apache\struts2\views\xslt\XSLTResult.java).

The instantiation of PrintWriter should be closed after all writing is done.

  public void execute(ActionInvocation invocation) throws Exception {
        …
        PrintWriter writer = response.getWriter();
...
 writer.flush(); // ...and flush...
}



> unclosed instantiation of PrintWriter 
> --------------------------------------
>
>                 Key: WW-4546
>                 URL: https://issues.apache.org/jira/browse/WW-4546
>             Project: Struts 2
>          Issue Type: Bug
>    Affects Versions: 2.3.24
>            Reporter: songwanging
>            Priority: Minor
>
> In method execute() of class XSLTResult.java 
> (src\core\src\main\java\org\apache\struts2\views\xslt\XSLTResult.java).
> The instantiation of PrintWriter should be closed after all writing is done.
> {code:java}
>   public void execute(ActionInvocation invocation) throws Exception {
>       …
>       PrintWriter writer = response.getWriter();
> ...
>  writer.flush(); // ...and flush...
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to