Skip to content

Commit ea98e60

Browse files
authored
Update PasswordValidator.java
Updating success message to be clearer on what's actually occurring. Thank you @diegogcc for pointing this out.
1 parent 94bed9b commit ea98e60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/chapter8/PasswordValidator.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void main(String[] args){
4343

4444
}while(!validator.isValid());
4545

46-
System.out.println("Your password has been changed");
46+
System.out.println("The proposed password is valid");
4747

4848
validator.closeScanner();
4949
}
@@ -104,4 +104,4 @@ public void changePassword(String newPassword){
104104
errorMessage += "\n Your password must be different from your current password.";
105105
}
106106
}
107-
}
107+
}

0 commit comments

Comments
 (0)