private is redundant for enum constructors 27/35027/1
authorMunir Ahmad <munir.ahmad@bell.ca>
Sat, 10 Mar 2018 01:03:17 +0000 (20:03 -0500)
committerMunir Ahmad <munir.ahmad@bell.ca>
Sat, 10 Mar 2018 01:03:17 +0000 (20:03 -0500)
Change-Id: I3fbd868e83651111a6bce6c268ed4d7cf84c3fd5
Issue-ID: SO-437
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/policy/entities/PolicyServiceType.java
bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/domain/InventoryType.java
common/src/main/java/org/openecomp/mso/logger/MsoLogger.java

index b5ab63c..01f6738 100644 (file)
@@ -36,7 +36,7 @@ public enum PolicyServiceType {
        
        private final String name;
        
-       private PolicyServiceType(String name) {
+       PolicyServiceType(String name) {
                this.name = name;
        }
        
index 653f75c..fbc312e 100644 (file)
@@ -27,7 +27,7 @@ public enum InventoryType{
 \r
        private String type;\r
 \r
-       private InventoryType(String type){\r
+       InventoryType(String type){\r
                this.type = type;\r
        }\r
 \r
index b8c4aed..dbbb33e 100644 (file)
@@ -115,7 +115,7 @@ public class MsoLogger {
             return this.value;
         }
 
-        private ResponseCode(int value) {
+        ResponseCode(int value) {
             this.value = value;
         }
     };
@@ -130,7 +130,7 @@ public class MsoLogger {
             return this.value;
         }
 
-        private ErrorCode(int value) {
+        ErrorCode(int value) {
             this.value = value;
         }
     };