diff options
author | Dan Timoney <dtimoney@att.com> | 2017-12-19 15:29:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-12-19 15:29:37 +0000 |
commit | ac68c31943b5a93c1a9e0d7e64d24455d9eb97e6 (patch) | |
tree | 692a283d87c6d20ab14104685e7065f9cfec9b15 | |
parent | 383d433f5cbb7394a9c335eff7759c9e2126f106 (diff) | |
parent | ec6b8d46a51c4f7b6dbc762e76d7f229a544fe1e (diff) |
Merge "Removal of useless parenthesis"
-rw-r--r-- | asdcApi/provider/src/main/java/org/onap/ccsdk/sli/northbound/asdcapi/AsdcApiSliClient.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asdcApi/provider/src/main/java/org/onap/ccsdk/sli/northbound/asdcapi/AsdcApiSliClient.java b/asdcApi/provider/src/main/java/org/onap/ccsdk/sli/northbound/asdcapi/AsdcApiSliClient.java index 51fdd7002..02dc786ac 100644 --- a/asdcApi/provider/src/main/java/org/onap/ccsdk/sli/northbound/asdcapi/AsdcApiSliClient.java +++ b/asdcApi/provider/src/main/java/org/onap/ccsdk/sli/northbound/asdcapi/AsdcApiSliClient.java @@ -40,7 +40,7 @@ public class AsdcApiSliClient { public boolean hasGraph(String module, String rpc, String version, String mode) throws SvcLogicException { - return(svcLogicService.hasGraph(module, rpc, version, mode)); + return svcLogicService.hasGraph(module, rpc, version, mode); } @@ -88,7 +88,7 @@ public class AsdcApiSliClient { } - return (respProps); + return respProps; } } |