cziegeler    01/05/14 04:43:09

  Modified:    src/org/apache/cocoon/caching CachingOutputStream.java
  Log:
  Fixed big caching bug - byte arrays were written twice to the output stream
  
  Revision  Changes    Path
  1.2       +1 -2      
xml-cocoon2/src/org/apache/cocoon/caching/CachingOutputStream.java
  
  Index: CachingOutputStream.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/org/apache/cocoon/caching/CachingOutputStream.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CachingOutputStream.java  2001/05/09 20:50:03     1.1
  +++ CachingOutputStream.java  2001/05/14 11:43:07     1.2
  @@ -16,7 +16,7 @@
    * TeeOutputStream.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a>
  - * @version CVS $Revision: 1.1 $ $Date: 2001/05/09 20:50:03 $
  + * @version CVS $Revision: 1.2 $ $Date: 2001/05/14 11:43:07 $
    */
   
   public final class CachingOutputStream
  @@ -55,7 +55,6 @@
       }
   
       public void write( byte b[] ) throws IOException {
  -        this.receiver.write(b);
           this.write(b, 0, b.length);
       }
   
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to