You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gi...@apache.org on 2003/07/31 17:43:49 UTC

cvs commit: cocoon-2.1/src/java/org/apache/cocoon/components/flow AbstractInterpreter.java

gianugo     2003/07/31 08:43:49

  Modified:    src/java/org/apache/cocoon/components/flow
                        AbstractInterpreter.java
  Log:
  Close the outputstream after processing is over.
  
  Revision  Changes    Path
  1.5       +2 -1      cocoon-2.1/src/java/org/apache/cocoon/components/flow/AbstractInterpreter.java
  
  Index: AbstractInterpreter.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/flow/AbstractInterpreter.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AbstractInterpreter.java	18 May 2003 16:36:40 -0000	1.4
  +++ AbstractInterpreter.java	31 Jul 2003 15:43:49 -0000	1.5
  @@ -199,6 +199,7 @@
               result = processor.process(wrapper);
               wrapper.commitResponse();
               out.flush();
  +            out.close();
   
               // Return whatever the processor returned us
               return(result);