From: Rodrigo Lima Date: Mon, 4 May 2020 00:24:35 +0000 (-0400) Subject: Add Autowired annotation to the constructor instead of param in ExternalTestingImpl X-Git-Tag: 1.7.0~177 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F12%2F107012%2F1;p=sdc.git Add Autowired annotation to the constructor instead of param in ExternalTestingImpl Issue-ID: SDC-3003 Signed-off-by: Rodrigo Lima Change-Id: I720c6cf271a1444a584f42cdca2a7e4f2c59a85d --- diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java b/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java index 851dec2f71..1aae929b17 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java @@ -62,7 +62,8 @@ public class ExternalTestingImpl implements ExternalTesting { private static final Logger logger = LoggerFactory.getLogger(ExternalTestingImpl.class); - public ExternalTestingImpl(@Autowired ExternalTestingManager testingManager) { + @Autowired + public ExternalTestingImpl(ExternalTestingManager testingManager) { this.testingManager = testingManager; this.vendorSoftwareProductManager = VspManagerFactory.getInstance().createInterface(); }