You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mm...@locus.apache.org on 2000/03/30 17:57:14 UTC

cvs commit: xml-xalan/src/org/apache/xalan/xpath/xml FormatterToText.java

mmidy       00/03/30 07:57:14

  Modified:    src/org/apache/xalan/xpath/xml FormatterToText.java
  Log:
  Don't close writer, flush it.
  
  Revision  Changes    Path
  1.6       +1 -1      xml-xalan/src/org/apache/xalan/xpath/xml/FormatterToText.java
  
  Index: FormatterToText.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xpath/xml/FormatterToText.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FormatterToText.java	2000/03/16 17:33:37	1.5
  +++ FormatterToText.java	2000/03/30 15:57:14	1.6
  @@ -148,7 +148,7 @@
     {
       try
       {
  -      m_pw.close();
  +      m_pw.flush();
       }
       catch(IOException ioe)
       {