diff options
author | Dan Timoney <dtimoney@att.com> | 2017-09-21 14:48:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-21 14:48:36 +0000 |
commit | fd475e7b0cea20a68d9b1c70a825d0cbb5c000bb (patch) | |
tree | 6dca52b58cabeff514015cb46f649e3986889afd | |
parent | ed6aaf35dabae4070dba5c41798e351c25e8ce4d (diff) | |
parent | 0d59ee8e61cdfc9de37a6f96f73719888e03cb9e (diff) |
Merge "Remove unnecessary parentheses"
-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 160107fe..45f68351 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; } } } |