Author: billbarker
Date: Wed Jun  7 22:06:37 2006
New Revision: 412661

URL: http://svn.apache.org/viewvc?rev=412661&view=rev
Log:
Add missing method to stop Gump from nagging

Modified:
    tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/buf/C2BConverter.java

Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/buf/C2BConverter.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/buf/C2BConverter.java?rev=412661&r1=412660&r2=412661&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/buf/C2BConverter.java 
(original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/buf/C2BConverter.java Wed 
Jun  7 22:06:37 2006
@@ -82,6 +82,12 @@
 
     /** Generate the bytes using the specified encoding
      */
+    public  final void convert(String s, int off, int len ) throws IOException 
{
+       conv.write( s, off, len );
+    }
+
+    /** Generate the bytes using the specified encoding
+     */
     public  final void convert(String s ) throws IOException {
        conv.write( s );
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to