Sonar Fix: RestconfApiUtils.java 30/74730/1
authorArundathi Patil <arundpil@in.ibm.com>
Mon, 17 Dec 2018 16:42:17 +0000 (22:12 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Mon, 17 Dec 2018 16:42:26 +0000 (22:12 +0530)
Fixed sonar issues/code-smells across this file

Issue-ID: CCSDK-847
Change-Id: I5e528e23d8691fffca9b3732b7ff5e68a4827162
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
restconf-client/provider/src/main/java/org/onap/ccsdk/sli/plugins/restconfapicall/RestconfApiUtils.java

index 3a0b5fb..c5c7a91 100644 (file)
@@ -3,6 +3,8 @@
  * ONAP - CCSDK
  * ================================================================================
  * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
+ *
+ * Modifications Copyright © 2018 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -240,7 +242,7 @@ public final class RestconfApiUtils {
      * @return updated XML request message
      */
     static String getUpdatedXmlReq(String req, String nodeName, String modNs) {
-        String rootNode = "\n<" + nodeName + " xmlns=\"" + modNs.toString() +
+        String rootNode = "\n<" + nodeName + " xmlns=\"" + modNs +
                 "\">\n";
         req = req.replaceFirst("\n", rootNode);
         req = req + "</" + nodeName + ">";