Browse Source

Polish How-to Customize UserInfo response

Remove extraneous numbered callout.

Issue gh-537
Steve Riesenberg 3 years ago
parent
commit
8ee1c3473a

+ 1 - 1
docs/src/docs/asciidoc/examples/src/main/java/sample/userinfo/jwt/JwtUserInfoMapperSecurityConfig.java

@@ -113,7 +113,7 @@ public class JwtUserInfoMapperSecurityConfig {
 		return http.build();
 		return http.build();
 	}
 	}
 
 
-	@Bean // <4>
+	@Bean
 	public JwtDecoder jwtDecoder(JWKSource<SecurityContext> jwkSource) {
 	public JwtDecoder jwtDecoder(JWKSource<SecurityContext> jwkSource) {
 		return OAuth2AuthorizationServerConfiguration.jwtDecoder(jwkSource);
 		return OAuth2AuthorizationServerConfiguration.jwtDecoder(jwkSource);
 	}
 	}