diff options
author | Munir Ahmad <munir.ahmad@bell.ca> | 2018-03-09 20:03:17 -0500 |
---|---|---|
committer | Munir Ahmad <munir.ahmad@bell.ca> | 2018-03-09 20:03:17 -0500 |
commit | f35311f47d497cd0a6d790c21e5f20c11cf1fc58 (patch) | |
tree | f987354ec6aa55b8007400ba465fbe8b42883f14 /common/src/main/java | |
parent | 295c0dfc73ce9cd29916fba2c03004a5b919c646 (diff) |
private is redundant for enum constructors
Change-Id: I3fbd868e83651111a6bce6c268ed4d7cf84c3fd5
Issue-ID: SO-437
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
Diffstat (limited to 'common/src/main/java')
-rw-r--r-- | common/src/main/java/org/openecomp/mso/logger/MsoLogger.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/src/main/java/org/openecomp/mso/logger/MsoLogger.java b/common/src/main/java/org/openecomp/mso/logger/MsoLogger.java index b8c4aed8fa..dbbb33e0d8 100644 --- a/common/src/main/java/org/openecomp/mso/logger/MsoLogger.java +++ b/common/src/main/java/org/openecomp/mso/logger/MsoLogger.java @@ -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; } }; |