fixed sonar issues in AAIServiceUtils.java 29/75529/2
authorSandeep J <sandeejh@in.ibm.com>
Wed, 9 Jan 2019 06:08:54 +0000 (11:38 +0530)
committerSandeep Jha <sandeejh@in.ibm.com>
Wed, 9 Jan 2019 06:46:14 +0000 (06:46 +0000)
fixed sonar issues

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

index 6af9f9c..6c48c63 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
@@ -153,7 +155,7 @@ public class AAIServiceUtils {
         String term1 = null;
         String op = null;
         String term2 = null;
-        HashMap<String, String> results = new HashMap<String, String>();
+        HashMap<String, String> results = new HashMap<>();
 
         for (int i = 0; i < keyTerms.length; i++) {
             if (term1 == null) {
@@ -267,7 +269,7 @@ public class AAIServiceUtils {
     }
 
     protected static HashMap<String,String> pathToHashMap(String path) {
-        HashMap<String, String> nameValues = new  HashMap<String, String>();
+        HashMap<String, String> nameValues = new  HashMap<>();
 
         String[] split = path.split("/");