Removed Closeable implementation
This commit is contained in:
parent
5f2e958fae
commit
b2bf18dd3d
|
|
@ -26,7 +26,7 @@ import org.springframework.http.ReactiveHttpInputMessage;
|
|||
*
|
||||
* @author Arjen Poutsma
|
||||
*/
|
||||
public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage, Closeable {
|
||||
public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage {
|
||||
|
||||
/**
|
||||
* Return the HTTP status code of the response.
|
||||
|
|
@ -46,10 +46,4 @@ public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage, Cl
|
|||
*/
|
||||
String getStatusText();
|
||||
|
||||
/**
|
||||
* Close this response, freeing any resources created.
|
||||
*/
|
||||
@Override
|
||||
void close();
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue