Skip to content

Commit

Permalink
refactor: modifier 'private' is redundant for enum constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
vvatanabe committed Sep 6, 2023
1 parent 050c42c commit 6abcad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/nulabinc/zxcvbn/Pattern.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public enum Pattern {

private final String value;

private Pattern(final String value) {
Pattern(final String value) {
this.value = value;
}

Expand Down

0 comments on commit 6abcad8

Please sign in to comment.