fixed sonar issue in GenericRequest.java 48/75548/2
authorSandeep J <sandeejh@in.ibm.com>
Wed, 9 Jan 2019 10:53:38 +0000 (16:23 +0530)
committerSandeep Jha <sandeejh@in.ibm.com>
Wed, 9 Jan 2019 11:50:57 +0000 (11:50 +0000)
fixed sonar issue

Issue-ID: CCSDK-525
Change-Id: Ice555ba2ca3ae91fd8c745d512d7615f214ffe09
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/GenericRequest.java

index 7987aef..4582484 100755 (executable)
@@ -5,6 +5,8 @@
  * Copyright (C) 2017 AT&T Intellectual Property. All rights
  *             reserved.
  * ================================================================================
+ * Modifications Copyright (C) 2018 IBM.
+ * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -18,7 +20,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
 package org.onap.ccsdk.sli.adaptors.aai;
 
 import java.io.UnsupportedEncodingException;
@@ -70,7 +72,7 @@ public class GenericRequest extends AAIRequest {
 
         String request_url = getRequestPath(resourceName);
 
-        Map<String, String> queryParams = new HashMap<String, String> ();
+        Map<String, String> queryParams = new HashMap<> ();
         if(resourceVersion != null) {
             queryParams.put("resource-version", resourceVersion.toString());
         }