From: Soumendu Sekhar Acharya Date: Mon, 4 Dec 2017 07:29:24 +0000 (+0530) Subject: Minor Java Code Conventions X-Git-Tag: v1.1.3~8^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e14182319556f222b6647d2cd96e03d24dc0e0d4;p=dmaap%2Fmessagerouter%2Fdmaapclient.git Minor Java Code Conventions Move this variable to comply with Java Code Conventions Sonar Link: https://sonar.onap.org/component_issues/index?id=org.onap.dmaap.messagerouter.dmaapclient%3AdmaapClient#assignees=soumendu|severities=MINOR%2CCRITICAL Location: src/main/java/com/att/nsa/mr/client/MRClient.java Line No-37 Change-Id: I9822865dcf79e421c9fbdb2e61ca85293799458f Issue-ID: DMAAP-175 Signed-off-by: Soumendu Sekhar Acharya --- diff --git a/src/main/java/com/att/nsa/mr/client/MRClient.java b/src/main/java/com/att/nsa/mr/client/MRClient.java index f3d5c88..f3a8f43 100644 --- a/src/main/java/com/att/nsa/mr/client/MRClient.java +++ b/src/main/java/com/att/nsa/mr/client/MRClient.java @@ -32,9 +32,9 @@ public interface MRClient */ public class MRApiException extends Exception { + private static final long serialVersionUID = 1L; public MRApiException ( String msg ) { super ( msg ); } public MRApiException ( String msg, Throwable t ) { super ( msg, t ); } - private static final long serialVersionUID = 1L; } /**