Remove useless "final" keywords

This commit is contained in:
Florian THIERRY
2023-12-01 15:04:53 +01:00
parent 367676f6d8
commit 756953fbf9
7 changed files with 9 additions and 9 deletions

View File

@@ -47,7 +47,7 @@ public class UserJpaAdapter implements UserPort {
}
@Override
public boolean existsById(final UUID userId) {
public boolean existsById(UUID userId) {
return userJpaRepository.existsById(userId);
}