Skip to content

Commit ae20007

Browse files
committedNov 9, 2018
cleanup
1 parent 38afdde commit ae20007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎spring-social/src/main/java/com/example/springsocial/config/SecurityConfig.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
3838
private CustomOAuth2UserService customOAuth2UserService;
3939

4040
@Autowired
41-
private OAuth2AuthenticationSuccessHandler oauth2AuthenticationSuccessHandler;
41+
private OAuth2AuthenticationSuccessHandler oAuth2AuthenticationSuccessHandler;
4242

4343
@Autowired
4444
private OAuth2AuthenticationFailureHandler oAuth2AuthenticationFailureHandler;
@@ -112,7 +112,7 @@ protected void configure(HttpSecurity http) throws Exception {
112112
.userInfoEndpoint()
113113
.userService(customOAuth2UserService)
114114
.and()
115-
.successHandler(oauth2AuthenticationSuccessHandler)
115+
.successHandler(oAuth2AuthenticationSuccessHandler)
116116
.failureHandler(oAuth2AuthenticationFailureHandler);
117117

118118
// Add our custom Token based authentication filter

0 commit comments

Comments
 (0)