Minor Java Code Conventions 17/25417/1
authorSoumendu Sekhar Acharya <sa00498080@techmahindra.com>
Mon, 4 Dec 2017 07:29:24 +0000 (12:59 +0530)
committerSoumendu Sekhar Acharya <sa00498080@techmahindra.com>
Mon, 4 Dec 2017 07:30:00 +0000 (13:00 +0530)
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>
src/main/java/com/att/nsa/mr/client/MRClient.java

index f3d5c88..f3a8f43 100644 (file)
@@ -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;
        }
 
        /**