From 97376aeb45a5196b2eea93267688f6ead1bb65ed Mon Sep 17 00:00:00 2001 From: Junsung Cho <8730974+rymuff@users.noreply.github.com> Date: Sun, 6 Nov 2022 12:02:07 +0900 Subject: [PATCH] Fix typo in JavaDoc https://github.com/spring-projects/spring-security/pull/12143#discussion_r1022203207 Fix typo in JavaDoc Fix typo in JavaDoc of USER_NOT_FOUND_PASSWORD --- .../security/authentication/dao/DaoAuthenticationProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/authentication/dao/DaoAuthenticationProvider.java b/core/src/main/java/org/springframework/security/authentication/dao/DaoAuthenticationProvider.java index 6d65494af13..88b9c666c13 100644 --- a/core/src/main/java/org/springframework/security/authentication/dao/DaoAuthenticationProvider.java +++ b/core/src/main/java/org/springframework/security/authentication/dao/DaoAuthenticationProvider.java @@ -40,7 +40,7 @@ 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. */ private static final String USER_NOT_FOUND_PASSWORD = "userNotFoundPassword";