From a257a4a37dd8ea52188694d29115f55dcf2d6388 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Fri, 30 Oct 2015 11:02:40 +0100 Subject: [PATCH] Polishing --- .../http/client/ReactiveClientHttpResponse.java | 4 +--- .../http/server/ReactiveServerHttpResponse.java | 5 ++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/spring-web-reactive/src/main/java/org/springframework/http/client/ReactiveClientHttpResponse.java b/spring-web-reactive/src/main/java/org/springframework/http/client/ReactiveClientHttpResponse.java index 6c4fab27f5..ae4b7fa0de 100644 --- a/spring-web-reactive/src/main/java/org/springframework/http/client/ReactiveClientHttpResponse.java +++ b/spring-web-reactive/src/main/java/org/springframework/http/client/ReactiveClientHttpResponse.java @@ -16,8 +16,6 @@ package org.springframework.http.client; -import java.io.Closeable; - import org.springframework.http.HttpStatus; import org.springframework.http.ReactiveHttpInputMessage; @@ -30,7 +28,7 @@ public interface ReactiveClientHttpResponse extends ReactiveHttpInputMessage { /** * Return the HTTP status code of the response. - * @return the HTTP status as an HttpStatus enum value + * @return the HTTP status as an {@link HttpStatus} enum value */ HttpStatus getStatusCode(); diff --git a/spring-web-reactive/src/main/java/org/springframework/http/server/ReactiveServerHttpResponse.java b/spring-web-reactive/src/main/java/org/springframework/http/server/ReactiveServerHttpResponse.java index 3563b7b07b..6ca45f9264 100644 --- a/spring-web-reactive/src/main/java/org/springframework/http/server/ReactiveServerHttpResponse.java +++ b/spring-web-reactive/src/main/java/org/springframework/http/server/ReactiveServerHttpResponse.java @@ -26,12 +26,11 @@ import org.springframework.http.ReactiveHttpOutputMessage; * * @author Arjen Poutsma */ -public interface ReactiveServerHttpResponse - extends ReactiveHttpOutputMessage { +public interface ReactiveServerHttpResponse extends ReactiveHttpOutputMessage { /** * Set the HTTP status code of the response. - * @param status the HTTP status as an HttpStatus enum value + * @param status the HTTP status as an {@link HttpStatus} enum value */ void setStatusCode(HttpStatus status);