From 68f90644c41b0baec7645eef01d30254394edb7e Mon Sep 17 00:00:00 2001 From: rama-huawei Date: Wed, 4 Oct 2017 19:03:54 +0530 Subject: Moved "" string literal on the left side. Replaced with diamond symbol Removed useless assignment to variables Issue-Id: SO-187 Change-Id: If6fac39f2f8832fe6f7a00ed8f0a221e8d8fb897 Signed-off-by: rama-huawei --- .../main/java/org/openecomp/mso/apihandler/common/BPELRestClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mso-api-handlers') diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/BPELRestClient.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/BPELRestClient.java index cd23991875..ddeb359071 100644 --- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/BPELRestClient.java +++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/BPELRestClient.java @@ -47,7 +47,7 @@ public class BPELRestClient extends RequestClient { String schemaVersion, String serviceInstanceId, String action) throws ClientProtocolException, IOException { - String encryptedCredentials = null; + String encryptedCredentials; HttpPost post = new HttpPost (url); msoLogger.debug ("BPEL url is: " + url); StringEntity input = new StringEntity (bpelReqXML); -- cgit 1.2.3-korg