aboutsummaryrefslogtreecommitdiffstats
path: root/sli
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-12-07 16:15:32 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-12-07 16:15:48 +0530
commit45cdc54762d8c45ddae9ad6c3ecf289abd2d0661 (patch)
treee817fc5f559d7fb05c6d28d440bfcf0a2d4b90db /sli
parent7db11491f101ed834da2f73958647240502677df (diff)
fixed sonar issues in SvcLogicDblibStore.java
fixed sonar issue Issue-ID: CCSDK-525 Change-Id: Ia1ddf9787311b786c71b19e651730b65c2c0835e Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'sli')
-rw-r--r--sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicDblibStore.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicDblibStore.java b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicDblibStore.java
index 3ade88f4..87e8f1a4 100644
--- a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicDblibStore.java
+++ b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicDblibStore.java
@@ -302,7 +302,7 @@ public class SvcLogicDblibStore implements SvcLogicStore {
throws SvcLogicException {
String deleteGraphSql = "DELETE FROM SVC_LOGIC WHERE module = ? AND rpc = ? AND version = ? AND mode = ?";
- ArrayList<String> args = new ArrayList<String>();
+ ArrayList<String> args = new ArrayList<>();
args.add(module);
args.add(rpc);
@@ -320,7 +320,7 @@ public class SvcLogicDblibStore implements SvcLogicStore {
String deactivateSql = "UPDATE SVC_LOGIC SET active = 'N' WHERE module = ? AND rpc = ? AND mode = ?";
String activateSql = "UPDATE SVC_LOGIC SET active = 'Y' WHERE module = ? AND rpc = ? AND mode = ? AND version = ?";
- ArrayList<String> args = new ArrayList<String>();
+ ArrayList<String> args = new ArrayList<>();
args.add(graph.getModule());
args.add(graph.getRpc());
@@ -437,7 +437,7 @@ public class SvcLogicDblibStore implements SvcLogicStore {
String activateSql = "UPDATE SVC_LOGIC SET active = 'Y' WHERE module = ? AND rpc = ? AND mode = ? AND version = ?";
- ArrayList<String> args = new ArrayList<String>();
+ ArrayList<String> args = new ArrayList<>();
args.add(module);
args.add(rpc);