Author: fhanik Date: Wed Aug 22 06:29:21 2007 New Revision: 568605 URL: http://svn.apache.org/viewvc?rev=568605&view=rev Log: remove non needed methods, somehow they cause an itch, so lets get rid of the itch
Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java?rev=568605&r1=568604&r2=568605&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java Wed Aug 22 06:29:21 2007 @@ -22,7 +22,6 @@ import java.io.InputStream; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; -import java.nio.CharBuffer; /** Efficient conversion of bytes to character . * @@ -214,14 +213,6 @@ public final int read() throws IOException { 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 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]