Remove unnecessary simicolon from all java classes 29/35029/1
authorMunir Ahmad <munir.ahmad@bell.ca>
Sat, 10 Mar 2018 01:06:57 +0000 (20:06 -0500)
committerMunir Ahmad <munir.ahmad@bell.ca>
Sat, 10 Mar 2018 01:07:30 +0000 (20:07 -0500)
Change-Id: I5a320c606ea3e0c47efa6d84e8b0cc1ab40f3b70
Issue-ID: SO-437
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
adapters/mso-vfc-adapter/src/main/java/org/openecomp/mso/adapters/vfc/exceptions/ApplicationException.java
common/src/main/java/org/openecomp/mso/logger/MsoLogger.java
common/src/main/java/org/openecomp/mso/properties/MsoPropertiesParameters.java

index dbbb33e..6588995 100644 (file)
@@ -98,11 +98,11 @@ public class MsoLogger {
 
     public enum Catalog {
         APIH, BPEL, RA, ASDC, GENERAL
-    };
+    }
 
     public enum StatusCode {
         COMPLETE, ERROR
-    };
+    }
 
     public enum ResponseCode {
         Suc(0), PermissionError(100), DataError(300), DataNotFound(301), BadRequest(302), SchemaError(
@@ -118,7 +118,7 @@ public class MsoLogger {
         ResponseCode(int value) {
             this.value = value;
         }
-    };
+    }
 
     public enum ErrorCode {
         PermissionError(100), AvailabilityError(200), DataError(300), SchemaError(400), BusinessProcesssError(
@@ -133,7 +133,7 @@ public class MsoLogger {
         ErrorCode(int value) {
             this.value = value;
         }
-    };
+    }
 
     private EELFLogger          logger, auditLogger, metricsLogger;
     private static final String CONFIG_FILE = System.getProperty("jboss.home.dir") + "/mso-config/uuid/uuid_"
index 488bb35..b89a5d4 100644 (file)
@@ -23,8 +23,8 @@ package org.openecomp.mso.properties;
 
 public class MsoPropertiesParameters {
        
-       protected enum MsoPropertiesType {JSON_PROP,JAVA_PROP};
-       
+       protected enum MsoPropertiesType {JSON_PROP,JAVA_PROP}
+
        protected MsoPropertiesType msoPropertiesType;
        
        protected int refreshCounter;