Removed Closeable implementation

This commit is contained in:
Arjen Poutsma
2015-10-30 09:39:46 +01:00
parent 5f2e958fae
commit b2bf18dd3d

View File

@@ -26,7 +26,7 @@ import org.springframework.http.ReactiveHttpInputMessage;
* *
* @author Arjen Poutsma * @author Arjen Poutsma
*/ */
public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage, Closeable { public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage {
/** /**
* Return the HTTP status code of the response. * Return the HTTP status code of the response.
@@ -46,10 +46,4 @@ public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage, Cl
*/ */
String getStatusText(); String getStatusText();
/**
* Close this response, freeing any resources created.
*/
@Override
void close();
} }