summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/crud/dao/champ/ChampDao.java
diff options
context:
space:
mode:
authorMichael Arrastia <MArrasti@amdocs.com>2018-06-18 16:13:27 +0100
committerMichael Arrastia <MArrasti@amdocs.com>2018-06-18 16:13:27 +0100
commit68cd3355674d66f8feee3d067960c081581a3911 (patch)
treef5021c82bb3fa7d4109b01a74947895ca6a2778f /src/main/java/org/onap/crud/dao/champ/ChampDao.java
parentb348af8ed2c4192f88169b37bf53fa25b8a7a681 (diff)
Fix Fortify scan violation
Change-Id: Ia99b0a9b60b1b4eebfb47640c410f6c684393599 Issue-ID: AAI-1196 Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
Diffstat (limited to 'src/main/java/org/onap/crud/dao/champ/ChampDao.java')
-rw-r--r--src/main/java/org/onap/crud/dao/champ/ChampDao.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/onap/crud/dao/champ/ChampDao.java b/src/main/java/org/onap/crud/dao/champ/ChampDao.java
index c8488ba..65d1d99 100644
--- a/src/main/java/org/onap/crud/dao/champ/ChampDao.java
+++ b/src/main/java/org/onap/crud/dao/champ/ChampDao.java
@@ -132,7 +132,7 @@ public class ChampDao implements GraphDao {
if (!vert.getType().equalsIgnoreCase(type)) {
// We didn't find a vertex with the supplied type, so just throw an
// exception.
- throw new CrudException("No vertex with id " + id + "and type " + type + " found in graph",
+ throw new CrudException("No vertex with id " + id + " and type " + type + " found in graph",
javax.ws.rs.core.Response.Status.NOT_FOUND);
}
return getResult;
@@ -579,10 +579,10 @@ public class ChampDao implements GraphDao {
}
// https://stackoverflow.com/questions/26942330/convert-mapstring-string-to-listnamevaluepair-is-this-the-most-efficient
- private List<NameValuePair> convertToNameValuePair(String key, HashSet<String> values) {
+ private List<NameValuePair> convertToNameValuePair(String k, HashSet<String> values) {
List<NameValuePair> nvpList = new ArrayList<>(values.size());
- values.forEach((value) -> nvpList.add(new BasicNameValuePair(key, value)));
+ values.forEach((v) -> nvpList.add(new BasicNameValuePair(k, v)));
return nvpList;
}