From ae93ec85ad6ee1a926309770bcf4b2d1607e420c Mon Sep 17 00:00:00 2001 From: SRINIVAS V Date: Thu, 28 Dec 2017 12:23:54 +0530 Subject: Removal of useless parenthesis Change-Id: I27289de2837414d45efcdd3f617d2b399a8f8ac6 Issue-ID: CCSDK-151 Signed-off-by: SRINIVAS V --- .../onap/ccsdk/sli/northbound/uebclient/SdncUebCallback.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ueb-listener') diff --git a/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebCallback.java b/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebCallback.java index 39ed3967..0db96f54 100644 --- a/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebCallback.java +++ b/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebCallback.java @@ -845,15 +845,15 @@ public class SdncUebCallback implements INotificationCallback { LOG.error("Unexpected file contents - root tag is "+rootName); } - return(mapEntry); + return mapEntry; } else { LOG.error("Cannot get root tag from file"); - return(null); + return null; } } catch (Exception e) { LOG.error("Could not parse YANG_XML file "+spoolFile.getName(), e); - return(null); + return null; } } @@ -922,7 +922,7 @@ public class SdncUebCallback implements INotificationCallback { } } catch (Exception e) { LOG.error("Could not process spool file "+artifact.getFile().getName(), e); - return(DistributionStatusEnum.DEPLOY_ERROR); + return DistributionStatusEnum.DEPLOY_ERROR; } msgBuffer.append("\n"); @@ -966,7 +966,7 @@ public class SdncUebCallback implements INotificationCallback { - return(deployResult); + return deployResult; } @@ -977,7 +977,7 @@ public class SdncUebCallback implements INotificationCallback { final IDistributionClient client, final INotificationData data, final IArtifactInfo relevantArtifact, final DistributionStatusEnum status) { - IDistributionStatusMessage statusMessage = new IDistributionStatusMessage() { + IDistributionStatusMessage statusMessage = new IDistributionStatusMessage() { @Override public long getTimestamp() { -- cgit 1.2.3-korg