Skip to content

Commit 1213dbe

Browse files
committed
Fix checkstyle
1 parent 3656e7a commit 1213dbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oauth2/oauth2-authorization-server/src/test/java/org/springframework/security/oauth2/server/authorization/jackson2/OAuth2AuthorizationServerJackson2ModuleTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void setup() {
6666
public void readValueWhenOAuth2AuthorizationAttributesThenSuccess() throws Exception {
6767
Authentication principal = new UsernamePasswordAuthenticationToken("principal", "credentials");
6868
OAuth2Authorization authorization = TestOAuth2Authorizations.authorization()
69-
.attributes(attrs -> attrs.put(Principal.class.getName(), principal))
69+
.attributes((attrs) -> attrs.put(Principal.class.getName(), principal))
7070
.build();
7171
Map<String, Object> attributes = authorization.getAttributes();
7272
String json = this.objectMapper.writeValueAsString(attributes);

0 commit comments

Comments
 (0)