From a8d6d929298366ee8db1a27861e43a2504bb3e50 Mon Sep 17 00:00:00 2001 From: fhanik Date: Wed, 22 Aug 2007 13:29:21 +0000 Subject: [PATCH] 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 --- java/org/apache/tomcat/util/buf/B2CConverter.java | 9 --------- 1 file changed, 9 deletions(-) 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() { -- 2.11.0