remove non needed methods, somehow they cause an itch, so lets get rid of the itch
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 22 Aug 2007 13:29:21 +0000 (13:29 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 22 Aug 2007 13:29:21 +0000 (13:29 +0000)
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

index 8b2c4dc..0b76391 100644 (file)
@@ -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() {