File tree 1 file changed +2
-2
lines changed
spring-social/src/main/java/com/example/springsocial/config
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
38
38
private CustomOAuth2UserService customOAuth2UserService ;
39
39
40
40
@ Autowired
41
- private OAuth2AuthenticationSuccessHandler oauth2AuthenticationSuccessHandler ;
41
+ private OAuth2AuthenticationSuccessHandler oAuth2AuthenticationSuccessHandler ;
42
42
43
43
@ Autowired
44
44
private OAuth2AuthenticationFailureHandler oAuth2AuthenticationFailureHandler ;
@@ -112,7 +112,7 @@ protected void configure(HttpSecurity http) throws Exception {
112
112
.userInfoEndpoint ()
113
113
.userService (customOAuth2UserService )
114
114
.and ()
115
- .successHandler (oauth2AuthenticationSuccessHandler )
115
+ .successHandler (oAuth2AuthenticationSuccessHandler )
116
116
.failureHandler (oAuth2AuthenticationFailureHandler );
117
117
118
118
// Add our custom Token based authentication filter
You can’t perform that action at this time.
0 commit comments