Add missing method to stop Gump from nagging
authorbillbarker <billbarker@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 8 Jun 2006 05:06:37 +0000 (05:06 +0000)
committerbillbarker <billbarker@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 8 Jun 2006 05:06:37 +0000 (05:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@412661 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/tomcat/util/buf/C2BConverter.java

index a3aa2a1..860ccf5 100644 (file)
@@ -82,6 +82,12 @@ public final class C2BConverter {
 \r
     /** Generate the bytes using the specified encoding\r
      */\r
+    public  final void convert(String s, int off, int len ) throws IOException {\r
+       conv.write( s, off, len );\r
+    }\r
+\r
+    /** Generate the bytes using the specified encoding\r
+     */\r
     public  final void convert(String s ) throws IOException {\r
        conv.write( s );\r
     }\r