From c49835e6f8ced1dc5461d5e9a8a4f9cd798e867d Mon Sep 17 00:00:00 2001 From: rama-huawei Date: Tue, 26 Sep 2017 18:05:04 +0530 Subject: Removed useless assignment to variables Issue-Id:SO-118 Change-Id: I38f63be63f1ee3464ea16107d4b5c152dd4b1410 Signed-off-by: rama-huawei --- .../java/org/openecomp/mso/apihandler/common/RequestClientFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mso-api-handlers/mso-api-handler-common') diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/RequestClientFactory.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/RequestClientFactory.java index a1f3805c7f..773c5b0a96 100644 --- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/RequestClientFactory.java +++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/RequestClientFactory.java @@ -35,7 +35,7 @@ public class RequestClientFactory { if(props ==null){ throw new IllegalStateException("properties is null"); } - String url = null; + String url; if(orchestrationURI.contains(CommonConstants.BPEL_SEARCH_STR)){ url = props.getProperty(CommonConstants.BPEL_URL,null) + orchestrationURI; retClient= new BPELRestClient(); -- cgit 1.2.3-korg