aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSoumendu Sekhar Acharya <sa00498080@techmahindra.com>2017-12-04 12:59:24 +0530
committerSoumendu Sekhar Acharya <sa00498080@techmahindra.com>2017-12-04 13:00:00 +0530
commite14182319556f222b6647d2cd96e03d24dc0e0d4 (patch)
tree91dc447f64e1ad4e5d4b2a6db519d13189fa6b72 /src
parentccb9a4c17cffc43c5dedd7f9913d97e7de596e22 (diff)
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 <sa00498080@techmahindra.com>
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/att/nsa/mr/client/MRClient.java2
1 files changed, 1 insertions, 1 deletions
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;
}
/**