Skip to content

Commit

Permalink
Merge pull request #11014 from qmonmert/fixstatic
Browse files Browse the repository at this point in the history
Clean code
  • Loading branch information
murdos authored Sep 29, 2024
2 parents 2b164d2 + 284c5ca commit c2caf2b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ class CustomClaimConverter implements Converter<Map<String, Object>, Map<String,
CLAIM_APPENDERS.stream().forEach(appender -> appender.append(claim, user));
}

private static interface ClaimAppender {
public void append(Map<String, Object> claim, ObjectNode user);
private interface ClaimAppender {
void append(Map<String, Object> claim, ObjectNode user);
}

private static class StandardClaimAppender implements ClaimAppender {
Expand Down

0 comments on commit c2caf2b

Please sign in to comment.