Oops, don't want that in there!

This commit is contained in:
Michael Bayne
2026-01-29 11:18:10 -08:00
parent 3c0f96045e
commit c9be34a6c4
@@ -37,7 +37,6 @@ public class OOOUserManager extends UserManager
throws AuthenticationFailedException
{
OOOUser ouser = (OOOUser)user;
log.info("authenticateUser", "user", user, "password", password.getCleartext());
char[] passchars = password.getCleartext().toCharArray();
boolean matched = ouser.isArgon2Hashed() ?
ouser.checkPassword(passchars) : user.passwordsMatch(password);