Skip to content

Commit

Permalink
#223 - Fix code scanning alert - Missing Override annotation
Browse files Browse the repository at this point in the history
- add missing @OverRide annotation to DirectBrokerClient.getSiteName
  • Loading branch information
michael-82 committed Nov 3, 2023
1 parent 09ba7e8 commit a73f398
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public List<String> getResultSiteIds(String brokerQueryId) throws QueryNotFoundE
return findQuery(brokerQueryId).hasResult() ? Collections.singletonList(SITE_ID_LOCAL) : Collections.emptyList();
}

@Override
public String getSiteName(String siteId) throws SiteNotFoundException {
if (SITE_ID_LOCAL.equals(siteId)) {
return SITE_NAME_LOCAL;
Expand Down

0 comments on commit a73f398

Please sign in to comment.