Browse Source

Fix typo in JavaDoc

Closes gh-12143
pull/12147/head
Junsung Cho 3 years ago committed by Josh Cummings
parent
commit
709de43e89
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
  1. 2
      core/src/main/java/org/springframework/security/authentication/dao/DaoAuthenticationProvider.java

2
core/src/main/java/org/springframework/security/authentication/dao/DaoAuthenticationProvider.java

@ -40,7 +40,7 @@ import org.springframework.util.Assert;
public class DaoAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider { public class DaoAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {
/** /**
* The plaintext password used to perform PasswordEncoder#matches(CharSequence, * The plaintext password used to perform {@link PasswordEncoder#matches(CharSequence,
* String)} on when the user is not found to avoid SEC-2056. * String)} on when the user is not found to avoid SEC-2056.
*/ */
private static final String USER_NOT_FOUND_PASSWORD = "userNotFoundPassword"; private static final String USER_NOT_FOUND_PASSWORD = "userNotFoundPassword";

Loading…
Cancel
Save