mirror of
https://gitee.com/dromara/hutool.git
synced 2026-02-09 09:16:26 +08:00
修复MailAccount.setAuth参数与field不一致问题(issue#4217@Github)
This commit is contained in:
@@ -247,7 +247,7 @@ public class MailAccount implements Serializable {
|
|||||||
* @param isAuth 是否需要用户名密码验证
|
* @param isAuth 是否需要用户名密码验证
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
public MailAccount setAuth(final boolean isAuth) {
|
public MailAccount setAuth(final Boolean isAuth) {
|
||||||
this.auth = isAuth;
|
this.auth = isAuth;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user