From 536fe4aed1cf93dbc0eb926a6444d89f3a3f56df Mon Sep 17 00:00:00 2001 From: billbarker Date: Thu, 8 Jun 2006 05:06:37 +0000 Subject: [PATCH] Add missing method to stop Gump from nagging 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 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/java/org/apache/tomcat/util/buf/C2BConverter.java b/java/org/apache/tomcat/util/buf/C2BConverter.java index a3aa2a156..860ccf56b 100644 --- a/java/org/apache/tomcat/util/buf/C2BConverter.java +++ b/java/org/apache/tomcat/util/buf/C2BConverter.java @@ -82,6 +82,12 @@ public final class C2BConverter { /** 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 ); } -- 2.11.0