Browse Source

Fix typo in OAuth2AccessTokenResponse

Closes gh-8746
pull/8749/head
Joe Grandja 6 years ago
parent
commit
659b25a4e5
  1. 5
      oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AccessTokenResponse.java

5
oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AccessTokenResponse.java

@ -82,8 +82,9 @@ public final class OAuth2AccessTokenResponse { @@ -82,8 +82,9 @@ public final class OAuth2AccessTokenResponse {
}
/**
* Returns a new {@link Builder}, initialized with the provided response
* @param response the response to intialize the builder with
* Returns a new {@link Builder}, initialized with the provided response.
*
* @param response the response to initialize the builder with
* @return the {@link Builder}
*/
public static Builder withResponse(OAuth2AccessTokenResponse response) {

Loading…
Cancel
Save