fix(common): 确保密码校验逻辑正确执行
修复PasswordUtil类中的一个bug,该bug导致密码校验逻辑无法正确执行。之前,密码校验逻辑在检测到连续三个或更多相同字符时返回错误,现在修正为警告信息,以便与预期行为一致。
This commit is contained in:
parent
4568db8360
commit
13a242855b
|
@ -236,7 +236,6 @@ public class PasswordUtil {
|
||||||
}
|
}
|
||||||
if (flag) {
|
if (flag) {
|
||||||
return "密码不能连续三个或者三个以上字符";
|
return "密码不能连续三个或者三个以上字符";
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return "ok";
|
return "ok";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue