From 5dbe45d88a8372343ed77504220b50b815b1b7f9 Mon Sep 17 00:00:00 2001 From: Rodrigo Lima Date: Sun, 3 May 2020 20:24:35 -0400 Subject: Add Autowired annotation to the constructor instead of param in ExternalTestingImpl Issue-ID: SDC-3003 Signed-off-by: Rodrigo Lima Change-Id: I720c6cf271a1444a584f42cdca2a7e4f2c59a85d --- .../sdcrests/externaltesting/rest/services/ExternalTestingImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest') 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(); } -- cgit 1.2.3-korg