mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
优化所调用的ObjectUtil#defaultIfNull避免重复创建
This commit is contained in:
parent
270b9d2ff5
commit
4224e86461
@ -2,7 +2,7 @@
|
||||
# 🚀Changelog
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.33(2024-10-30)
|
||||
# 5.8.33(2024-11-05)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 SyncFinisher增加setExecutorService方法(issue#IANKQ1@Gitee)
|
||||
@ -19,6 +19,7 @@
|
||||
* 【core 】 PropDesc.isTransientForGet使用className,避免Android下类找不到问题(issue#IB0JP5@Gitee)
|
||||
* 【core 】 优化NumberUtil.count(pr#3772@Github)
|
||||
* 【crypto 】 SM2.signHex改名为signHexFromHex,原名标记废弃,避免歧义(issue#IB0NVY@Gitee)
|
||||
* 【all 】 优化所调用的ObjectUtil#defaultIfNull避免重复创建(pr#1274@Gitee)
|
||||
|
||||
### 🐞Bug修复
|
||||
* 【json 】 修复JSONConfig.setDateFormat设置后toBean无效问题(issue#3713@Github)
|
||||
|
@ -142,10 +142,7 @@ public enum ClipboardMonitor implements ClipboardOwner, Runnable, Closeable {
|
||||
|
||||
if (isRunning) {
|
||||
// 继续监听
|
||||
clipboard.setContents(
|
||||
ObjectUtil.defaultIfNull(transferable,
|
||||
() -> ObjectUtil.defaultIfNull(newContents, contents)),
|
||||
this);
|
||||
clipboard.setContents(ObjectUtil.defaultIfNull(transferable, ObjectUtil.defaultIfNull(newContents, contents)), this);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user