Skip to content

Commit

Permalink
Remove special characters from Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbenhassine committed Nov 7, 2020
1 parent 422d705 commit 2ef4dd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public PasswordRandomizer(final long seed, final int min, final int max, final b
* @param min the minimum number of characters of passwords
* @param max the maximum number of characters of passwords
* @param includeUppercase true to generate passwords containing Uppercase Characters , false otherwise
* @param includeSpecial true to generate passwords containing Special Characters {'!', '@', '#', '$', '%', '^', '&', '*'} , false otherwise
* @param includeSpecial true to generate passwords containing Special Characters, false otherwise
*/
public PasswordRandomizer(final long seed, final int min, final int max, final boolean includeUppercase, final boolean includeSpecial) {
super(seed);
Expand Down

0 comments on commit 2ef4dd5

Please sign in to comment.