Skip to content

Commit

Permalink
Merge pull request #168 from nulab/fix-style-of-pattern
Browse files Browse the repository at this point in the history
refactor: modifier 'private' is redundant for enum constructors
  • Loading branch information
vvatanabe authored Sep 9, 2023
2 parents 050c42c + 6abcad8 commit 418ef34
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 418ef34

Please sign in to comment.