mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复DateUtil.offset空指针问题
This commit is contained in:
parent
682cf265c4
commit
c8a1d67726
@ -16,6 +16,7 @@
|
||||
* 【core 】 修复BeanUtil.isBean判断Dict错误问题(issue#I9VTZG@Gitee)
|
||||
* 【core 】 修复VersionComparator传入空字符串报错问题(pr#3614@Github)
|
||||
* 【core 】 修复CaseInsensitiveLinkedMap顺序错误问题(issue#IA4K4F@Gitee)
|
||||
* 【core 】 修复DateUtil.offset空指针问题(issue#3617@Github)
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.28(2024-05-29)
|
||||
|
@ -1460,6 +1460,9 @@ public class DateUtil extends CalendarUtil {
|
||||
* @return 偏移后的日期
|
||||
*/
|
||||
public static DateTime offset(Date date, DateField dateField, int offset) {
|
||||
if (date == null) {
|
||||
return null;
|
||||
}
|
||||
return dateNew(date).offset(dateField, offset);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user