Fix typo in OperationResponseFactory Javadoc

See gh-765
This commit is contained in:
izeye
2021-11-25 23:11:25 +09:00
committed by Andy Wilkinson
parent b685d10f83
commit a6a7a93179

View File

@@ -31,8 +31,8 @@ public class OperationResponseFactory {
* {@code headers} will be augmented to ensure that they include a
* {@code Content-Length} header.
* @param status the status of the response
* @param headers the request's headers
* @param content the content of the request
* @param headers the response's headers
* @param content the content of the response
* @return the {@code OperationResponse}
* @deprecated since 2.0.4 in favor of {@link #create(int, HttpHeaders, byte[])}
*/
@@ -46,8 +46,8 @@ public class OperationResponseFactory {
* {@code headers} will be augmented to ensure that they include a
* {@code Content-Length} header.
* @param status the status of the response
* @param headers the request's headers
* @param content the content of the request
* @param headers the response's headers
* @param content the content of the response
* @return the {@code OperationResponse}
*/
public OperationResponse create(int status, HttpHeaders headers, byte[] content) {