Skip to content

Commit

Permalink
chore(code-style): fix existing checkstyle violations for rule FinalC…
Browse files Browse the repository at this point in the history
…lass
  • Loading branch information
murdos committed Dec 20, 2024
1 parent 04fff48 commit 3106053
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ final class RestAccount {
return roles;
}

private static class RestAccountBuilder {
private static final class RestAccountBuilder {
private String username;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class CustomClaimConverter implements Converter<Map<String, Object>, Map<String,
}
}

private static class NameClaimAppender implements ClaimAppender {
private static final class NameClaimAppender implements ClaimAppender {
@Override
public void append(Map<String, Object> claim, ObjectNode user) {
Expand All @@ -140,7 +140,7 @@ class CustomClaimConverter implements Converter<Map<String, Object>, Map<String,
}
}

private static class GroupClaimAppender implements ClaimAppender {
private static final class GroupClaimAppender implements ClaimAppender {
@Override
public void append(Map<String, Object> claim, ObjectNode user) {
Expand All @@ -152,7 +152,7 @@ class CustomClaimConverter implements Converter<Map<String, Object>, Map<String,
}
}

private static class RolesClaimAppender implements ClaimAppender {
private static final class RolesClaimAppender implements ClaimAppender {
@Override
public void append(Map<String, Object> claim, ObjectNode user) {
Expand Down

0 comments on commit 3106053

Please sign in to comment.