Fix output stream to not use the converter in the buffer, but do a simple hard coded...
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 20 Nov 2006 20:19:30 +0000 (20:19 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 20 Nov 2006 20:19:30 +0000 (20:19 +0000)
This makes the TCK test pass

git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@477315 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/connector/CoyoteOutputStream.java

index cc4bed3..9938b18 100644 (file)
@@ -110,7 +110,7 @@ public class CoyoteOutputStream
 
     public void print(String s)
         throws IOException {
-        ob.write(s);
+        super.print(s);
     }