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 88b9c666c1..c21a9ff2f1 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,8 +40,9 @@ import org.springframework.util.Assert; public class DaoAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider { /** - * The plaintext password used to perform {@link PasswordEncoder#matches(CharSequence, - * String)} on when the user is not found to avoid SEC-2056. + * 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";