From 1a3b9c1f3f3d9cb536aa97ee33c39413c1972581 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Wed, 25 Oct 2017 16:48:50 -0400 Subject: [PATCH] Polish UserInfoRetriever Issue gh-4695 --- .../client/authentication/userinfo/UserInfoRetriever.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/userinfo/UserInfoRetriever.java b/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/userinfo/UserInfoRetriever.java index fdcfdbd09d..ec4320f53c 100644 --- a/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/userinfo/UserInfoRetriever.java +++ b/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/userinfo/UserInfoRetriever.java @@ -31,6 +31,6 @@ import org.springframework.security.oauth2.client.authentication.AuthorizedClien */ public interface UserInfoRetriever { - T retrieve(AuthorizedClient clientAuthentication, Class responseType) throws OAuth2AuthenticationException; + T retrieve(AuthorizedClient authorizedClient, Class responseType) throws OAuth2AuthenticationException; }