Minor: Remove variable from checkEveything method

This commit is contained in:
Konstantinos Triantafyllou 2023-05-18 16:15:47 +03:00
parent 8a7bcaf9e2
commit 8ed68bccf6
1 changed files with 1 additions and 2 deletions

View File

@ -31,7 +31,6 @@ public class HealthController {
@PreAuthorize("hasAnyAuthority('PORTAL_ADMINISTRATOR')")
@RequestMapping(value = "/health_check/advanced", method = RequestMethod.GET)
public Map<String, String> checkEverything() {
Map<String, String> response = configuration.getProperties();
return response;
return configuration.getProperties();
}
}