diff options
author | surya-huawei <a.u.surya@huawei.com> | 2017-09-21 15:33:03 +0530 |
---|---|---|
committer | surya-huawei <a.u.surya@huawei.com> | 2017-09-21 15:35:21 +0530 |
commit | 0d59ee8e61cdfc9de37a6f96f73719888e03cb9e (patch) | |
tree | 2fa65d797849927c270829fd8bf6f2d8a92384f8 | |
parent | 630809c9b6b8f9ed1ff3f875d3c9849db52139e0 (diff) |
Remove unnecessary parentheses
*Useless parentheses can sometimes be misleading
and hence removed
Issue-Id: CCSDK-87
Change-Id: I018d791500a42356296d07d04de45517d061bb7f
Signed-off-by: surya-huawei <a.u.surya@huawei.com>
-rw-r--r-- | sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicNode.java | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicNode.java b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicNode.java index 160107fea..45f683516 100644 --- a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicNode.java +++ b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicNode.java @@ -87,28 +87,28 @@ public class SvcLogicNode implements Serializable { public String getNodeName() { - return(nodeName); + return nodeName; } public String getNodeType() { - return(nodeType); + return nodeType; } public SvcLogicGraph getGraph() { - return(graph); + return graph; } public int getNumOutcomes() { if (outcomes == null) { - return(0); + return 0; } else { - return(outcomes.size()); + return outcomes.size(); } } @@ -116,11 +116,11 @@ public class SvcLogicNode implements Serializable { { if (attributes.containsKey(name)) { - return(attributes.get(name)); + return attributes.get(name); } else { - return(null); + return null; } } @@ -151,7 +151,7 @@ public class SvcLogicNode implements Serializable { try { SvcLogicExpression parmValue; - if ((value == null) || (value.length() == 0)) + if (value == null || value.length() == 0) { parmValue = new SvcLogicAtom("STRING", ""); } @@ -187,11 +187,11 @@ public class SvcLogicNode implements Serializable { { if (parameters.containsKey(name)) { - return(parameters.get(name)); + return parameters.get(name); } else { - return(null); + return null; } } @@ -245,7 +245,7 @@ public class SvcLogicNode implements Serializable { return null; } - return(outcomes.entrySet()); + return outcomes.entrySet(); } @@ -256,7 +256,7 @@ public class SvcLogicNode implements Serializable { return null; } - return(parameters.entrySet()); + return parameters.entrySet(); } @@ -346,8 +346,8 @@ public class SvcLogicNode implements Serializable { pstr.print("'`"); } - if (((parameters == null) || (parameters.isEmpty())) && - ((outcomes == null) || outcomes.isEmpty())) + if ((parameters == null || parameters.isEmpty()) && + (outcomes == null || outcomes.isEmpty())) { pstr.print("/>\n"); pstr.flush(); @@ -424,12 +424,12 @@ public class SvcLogicNode implements Serializable { } if (outcomes == null) { - return(null); + return null; } if (outcomes.containsKey(value)) { - return(outcomes.get(value)); + return outcomes.get(value); } else { @@ -443,11 +443,11 @@ public class SvcLogicNode implements Serializable { if (outcomes.containsKey("Other")) { - return(outcomes.get("Other")); + return outcomes.get("Other"); } else { - return(null); + return null; } } } |