added @Deprecated

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7788 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 9706fc55aa
commit 07e89a7ae5

@ -46,7 +46,7 @@ public class NonClosingInputStreamEntity extends AbstractHttpEntity {
private final InputStream content; private final InputStream content;
private final long length; private final long length;
public NonClosingInputStreamEntity(final InputStream instream, long length) { public NonClosingInputStreamEntity(final InputStream instream, final long length) {
super(); super();
if (instream == null) { if (instream == null) {
throw new IllegalArgumentException("Source input stream may not be null"); throw new IllegalArgumentException("Source input stream may not be null");
@ -71,8 +71,8 @@ public class NonClosingInputStreamEntity extends AbstractHttpEntity {
if (outstream == null) { if (outstream == null) {
throw new IllegalArgumentException("Output stream may not be null"); throw new IllegalArgumentException("Output stream may not be null");
} }
InputStream instream = this.content; final InputStream instream = this.content;
byte[] buffer = new byte[BUFFER_SIZE]; final byte[] buffer = new byte[BUFFER_SIZE];
int l; int l;
if (this.length < 0) { if (this.length < 0) {
// consume until EOF // consume until EOF
@ -101,6 +101,7 @@ public class NonClosingInputStreamEntity extends AbstractHttpEntity {
* @deprecated Either use {@link #getContent()} and call {@link java.io.InputStream#close()} on that; * @deprecated Either use {@link #getContent()} and call {@link java.io.InputStream#close()} on that;
* otherwise call {@link #writeTo(OutputStream)} which is required to free the resources. * otherwise call {@link #writeTo(OutputStream)} which is required to free the resources.
*/ */
@Deprecated
public void consumeContent() throws IOException { public void consumeContent() throws IOException {
// If the input stream is from a connection, closing it will read to // If the input stream is from a connection, closing it will read to
// the end of the content. Otherwise, we don't care what it does. // the end of the content. Otherwise, we don't care what it does.

Loading…
Cancel
Save