Skip to content

Commit

Permalink
Fix assign minLength
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechen116 authored Oct 25, 2023
1 parent e81d38f commit 3e76b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/sqids/Sqids.java
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ public static final class Builder {
"zoccola").collect(Collectors.toSet()));

private String alphabet = DEFAULT_ALPHABET;
private int minLength = 0;
private int minLength = DEFAULT_MIN_LENGTH;
private Set<String> blockList = DEFAULT_BLOCK_LIST;

/**
Expand Down

0 comments on commit 3e76b9a

Please sign in to comment.