From: dinesha Date: Tue, 6 Aug 2019 11:12:47 +0000 (+0530) Subject: Sonar Fix- ProbeController.java- Reorder the modifiers to comply with the Java Langua... X-Git-Tag: 5.0.1~77 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F78%2F92778%2F1;p=vid.git 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 --- 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) {