1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Unnecessary enum modifier

This commit is contained in:
Lars Grefer
2019-08-09 00:42:07 +02:00
parent 8d0ca14e55
commit 40bee457f9
7 changed files with 9 additions and 9 deletions
@@ -55,7 +55,7 @@ public enum PasswordPolicyErrorStatus {
private final String errorCode;
private final String defaultMessage;
private PasswordPolicyErrorStatus(String errorCode, String defaultMessage) {
PasswordPolicyErrorStatus(String errorCode, String defaultMessage) {
this.errorCode = errorCode;
this.defaultMessage = defaultMessage;
}