From: fhanik Date: Mon, 20 Nov 2006 20:19:30 +0000 (+0000) Subject: Fix output stream to not use the converter in the buffer, but do a simple hard coded... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1aa2505cdb359e7b7bd63dbd17d778297815cc86;p=tomcat7.0 Fix output stream to not use the converter in the buffer, but do a simple hard coded conversion. 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 --- diff --git a/java/org/apache/catalina/connector/CoyoteOutputStream.java b/java/org/apache/catalina/connector/CoyoteOutputStream.java index cc4bed3ce..9938b18e8 100644 --- a/java/org/apache/catalina/connector/CoyoteOutputStream.java +++ b/java/org/apache/catalina/connector/CoyoteOutputStream.java @@ -110,7 +110,7 @@ public class CoyoteOutputStream public void print(String s) throws IOException { - ob.write(s); + super.print(s); }