(Sonar) Fixed finding: "@Override
should be used on overriding and implementing methods"
This commit is contained in:
parent
6606850e4a
commit
9147d364bc
2 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,7 @@ class AppUpdateAuthService implements ShowAdminInterface {
|
|||
@Autowired private UserRepository userRepository;
|
||||
@Autowired private ApplicationProperties applicationProperties;
|
||||
|
||||
@Override
|
||||
public boolean getShowUpdateOnlyAdmins() {
|
||||
boolean showUpdate = applicationProperties.getSystem().getShowUpdate();
|
||||
if (!showUpdate) {
|
||||
|
|
|
@ -559,6 +559,7 @@ public class ApplicationProperties {
|
|||
this.clientSecret = clientSecret;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Collection<String> getScopes() {
|
||||
if (scopes == null || scopes.isEmpty()) {
|
||||
scopes = new ArrayList<>();
|
||||
|
@ -661,6 +662,7 @@ public class ApplicationProperties {
|
|||
return scopes;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScopes(String scopes) {
|
||||
this.scopes =
|
||||
Arrays.stream(scopes.split(",")).map(String::trim).collect(Collectors.toList());
|
||||
|
|
Loading…
Reference in a new issue