From 6da0213ac4747a37a1dde8007339ccf5e88f8554 Mon Sep 17 00:00:00 2001 From: dinesha Date: Tue, 6 Aug 2019 16:42:47 +0530 Subject: Sonar Fix- ProbeController.java- Reorder the modifiers to comply with the Java Language Specification Fixed Sonar issues accross the file Issue-ID: VID-547 Change-Id: I6240ae0bc339ba43b55b8a66609935bc63705c1d Signed-off-by: dinesha --- .../src/main/java/org/onap/vid/controller/ProbeController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vid-app-common/src/main/java/org/onap/vid/controller/ProbeController.java b/vid-app-common/src/main/java/org/onap/vid/controller/ProbeController.java index 26a8add6a..1ae38d103 100644 --- a/vid-app-common/src/main/java/org/onap/vid/controller/ProbeController.java +++ b/vid-app-common/src/main/java/org/onap/vid/controller/ProbeController.java @@ -34,7 +34,7 @@ import java.util.List; @RequestMapping("probe") public class ProbeController extends RestrictedBaseController { - final private ProbeService probeService; + private final ProbeService probeService; @Autowired public ProbeController(ProbeService probeService) { -- cgit 1.2.3-korg