From: fhanik Date: Wed, 22 Aug 2007 13:29:21 +0000 (+0000) Subject: remove non needed methods, somehow they cause an itch, so lets get rid of the itch X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a8d6d929298366ee8db1a27861e43a2504bb3e50;p=tomcat7.0 remove non needed methods, somehow they cause an itch, so lets get rid of the itch git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@568605 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/buf/B2CConverter.java b/java/org/apache/tomcat/util/buf/B2CConverter.java index 8b2c4dc99..0b763918e 100644 --- a/java/org/apache/tomcat/util/buf/B2CConverter.java +++ b/java/org/apache/tomcat/util/buf/B2CConverter.java @@ -22,7 +22,6 @@ import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; -import java.nio.CharBuffer; /** Efficient conversion of bytes to character . * @@ -216,14 +215,6 @@ final class ReadConvertor extends InputStreamReader { return super.read(); } - public final int read(CharBuffer cb) throws IOException { - return super.read(cb); - } - - public final int read(char[] cbuf) throws IOException { - return super.read(cbuf); - } - /** Reset the buffer */ public final void recycle() {