Index: java/org/apache/commons/httpclient/methods/GetMethod.java =================================================================== RCS file: /home/cvspublic/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/GetMethod.java,v retrieving revision 1.23 diff -u -r1.23 GetMethod.java --- java/org/apache/commons/httpclient/methods/GetMethod.java 2 Feb 2003 04:30:13 -0000 1.23 +++ java/org/apache/commons/httpclient/methods/GetMethod.java 29 Apr 2003 12:41:24 -0000 @@ -279,39 +279,6 @@ } /** - * Return my response body, if any, as a byte array. Otherwise return - * null. - * - * @return the response body as a byte array - * - * @since 2.0 - */ - public byte[] getResponseBody() { - LOG.trace("enter GetMethod.getResponseBody()"); - - checkUsed(); - return super.getResponseBody(); - } - - /** - * Return my response body, if any, as an {@link InputStream}. Otherwise - * return null. - * - * @return a stream to read the response from - * - * @throws IOException when there is an error reading the response - * - * @since 2.0 - */ - public InputStream getResponseBodyAsStream() throws IOException { - LOG.trace("enter GetMethod.getResponseBodyAsStream()"); - - checkUsed(); - return super.getResponseBodyAsStream(); - } - - - /** * Temporary directory setter. * * @param tempDir New value of tempDir