Skip to content
Snippets Groups Projects
Commit 9f4cfbd7 authored by Aalekh Jain's avatar Aalekh Jain
Browse files

Removed public access modifier for constructor made for unit testing in `WhoamiController.java`

parent cdf84379
No related branches found
No related tags found
1 merge request!61Improve code coverage
Pipeline #9977 failed
...@@ -29,7 +29,7 @@ public class WhoamiController { ...@@ -29,7 +29,7 @@ public class WhoamiController {
private SecurityContext securityContext; private SecurityContext securityContext;
// Constructor made for unit testing // Constructor made for unit testing
public WhoamiController(SecurityContext securityContext) { WhoamiController(SecurityContext securityContext) {
this.securityContext = securityContext; this.securityContext = securityContext;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment