EntityEnclosingRequestWrapper.java (httpcomponents-client-4.5.6-src) | : | EntityEnclosingRequestWrapper.java (httpcomponents-client-4.5.7-src) | ||
---|---|---|---|---|
skipping to change at line 108 | skipping to change at line 108 | |||
super.consumeContent(); | super.consumeContent(); | |||
} | } | |||
@Override | @Override | |||
public InputStream getContent() throws IOException { | public InputStream getContent() throws IOException { | |||
consumed = true; | consumed = true; | |||
return super.getContent(); | return super.getContent(); | |||
} | } | |||
@Override | @Override | |||
public void writeTo(final OutputStream outstream) throws IOException { | public void writeTo(final OutputStream outStream) throws IOException { | |||
consumed = true; | consumed = true; | |||
super.writeTo(outstream); | super.writeTo(outStream); | |||
} | } | |||
} | } | |||
} | } | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |