Skip to content
Snippets Groups Projects
Commit 85bd5565 authored by Lin Fan's avatar Lin Fan
Browse files

Update PassBook.java

parent 80152b47
No related branches found
No related tags found
No related merge requests found
Pipeline #5641 passed
......@@ -91,7 +91,7 @@ public class PassBook
boolean containsLowerCase = false;
boolean containsUpperCase = false;
boolean containsNumber = false;
for (int i = 0; i < =passphrase.length(); i++) {
for (int i = 0; i < passphrase.length(); i++) {
if ('a' <= passphrase.charAt(i) && passphrase.charAt(i) <= 'z') {
containsLowerCase = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment