Browse Source

Fix typos in AbstractClientHttpRequest

Closes gh-24623
pull/24627/head
Adrian Cole 5 years ago committed by GitHub
parent
commit
7f5395a216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      spring-web/src/main/java/org/springframework/http/client/reactive/AbstractClientHttpRequest.java

4
spring-web/src/main/java/org/springframework/http/client/reactive/AbstractClientHttpRequest.java

@ -137,13 +137,13 @@ public abstract class AbstractClientHttpRequest implements ClientHttpRequest { @@ -137,13 +137,13 @@ public abstract class AbstractClientHttpRequest implements ClientHttpRequest {
/**
* Apply header changes from {@link #getHeaders()} to the underlying response.
* Apply header changes from {@link #getHeaders()} to the underlying request.
* This method is called once only.
*/
protected abstract void applyHeaders();
/**
* Add cookies from {@link #getHeaders()} to the underlying response.
* Add cookies from {@link #getHeaders()} to the underlying request.
* This method is called once only.
*/
protected abstract void applyCookies();

Loading…
Cancel
Save