Polish UserInfoRetriever

Issue gh-4695
This commit is contained in:
Joe Grandja 2017-10-25 16:48:50 -04:00
parent 43d201fa3e
commit 1a3b9c1f3f
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ import org.springframework.security.oauth2.client.authentication.AuthorizedClien
*/
public interface UserInfoRetriever {
<T> T retrieve(AuthorizedClient clientAuthentication, Class<T> responseType) throws OAuth2AuthenticationException;
<T> T retrieve(AuthorizedClient authorizedClient, Class<T> responseType) throws OAuth2AuthenticationException;
}