From 25836328835ca4f017658ab546b654a5e5b92c09 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期四, 25 四月 2024 12:50:42 +0800 Subject: [PATCH] update springboot 3.2.4 => 3.2.5 update mybatis-plus 3.5.5 => 3.5.6 适配更改代码 update springdoc 2.4.0 => 2.5.0 update easyexcel 3.3.3 => 3.3.4 update redisson 3.27.2 => 3.29.0 update lombok 1.18.30 => 1.18.32 update sms4j 3.2.0 => 3.2.1 --- ruoyi-common/ruoyi-common-mail/src/main/java/org/dromara/common/mail/utils/GlobalMailAccount.java | 63 +++++++++++++++---------------- 1 files changed, 31 insertions(+), 32 deletions(-) diff --git a/ruoyi-common/ruoyi-common-mail/src/main/java/org/dromara/common/mail/utils/GlobalMailAccount.java b/ruoyi-common/ruoyi-common-mail/src/main/java/org/dromara/common/mail/utils/GlobalMailAccount.java index a18f3fe..fdae869 100644 --- a/ruoyi-common/ruoyi-common-mail/src/main/java/org/dromara/common/mail/utils/GlobalMailAccount.java +++ b/ruoyi-common/ruoyi-common-mail/src/main/java/org/dromara/common/mail/utils/GlobalMailAccount.java @@ -6,42 +6,41 @@ * 鍏ㄥ眬閭欢甯愭埛锛屼緷璧栦簬閭欢閰嶇疆鏂囦欢{@link MailAccount#MAIL_SETTING_PATHS} * * @author looly - * */ public enum GlobalMailAccount { - INSTANCE; + INSTANCE; - private final MailAccount mailAccount; + private final MailAccount mailAccount; - /** - * 鏋勯�� - */ - GlobalMailAccount() { - mailAccount = createDefaultAccount(); - } + /** + * 鏋勯�� + */ + GlobalMailAccount() { + mailAccount = createDefaultAccount(); + } - /** - * 鑾峰緱閭欢甯愭埛 - * - * @return 閭欢甯愭埛 - */ - public MailAccount getAccount() { - return this.mailAccount; - } + /** + * 鑾峰緱閭欢甯愭埛 + * + * @return 閭欢甯愭埛 + */ + public MailAccount getAccount() { + return this.mailAccount; + } - /** - * 鍒涘缓榛樿甯愭埛 - * - * @return MailAccount - */ - private MailAccount createDefaultAccount() { - for (String mailSettingPath : MailAccount.MAIL_SETTING_PATHS) { - try { - return new MailAccount(mailSettingPath); - } catch (IORuntimeException ignore) { - //ignore - } - } - return null; - } + /** + * 鍒涘缓榛樿甯愭埛 + * + * @return MailAccount + */ + private MailAccount createDefaultAccount() { + for (String mailSettingPath : MailAccount.MAIL_SETTING_PATHS) { + try { + return new MailAccount(mailSettingPath); + } catch (IORuntimeException ignore) { + //ignore + } + } + return null; + } } -- Gitblit v1.9.3