diff options
author | rama-huawei <rama.subba.reddy.s@huawei.com> | 2017-09-26 18:05:04 +0530 |
---|---|---|
committer | rama-huawei <rama.subba.reddy.s@huawei.com> | 2017-09-26 18:05:04 +0530 |
commit | c49835e6f8ced1dc5461d5e9a8a4f9cd798e867d (patch) | |
tree | 303fba9866da00408dcce5088ed88e812e780953 /mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp | |
parent | d310c52d5672a8c82a598a71baef12c355b88538 (diff) |
Removed useless assignment to variables
Issue-Id:SO-118
Change-Id: I38f63be63f1ee3464ea16107d4b5c152dd4b1410
Signed-off-by: rama-huawei <rama.subba.reddy.s@huawei.com>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp')
-rw-r--r-- | mso-api-handlers/mso-api-handler-common/src/main/java/org/openecomp/mso/apihandler/common/RequestClientFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |