1
mirror of https://github.com/CarmJos/UltraDepository.git synced 2024-09-19 11:45:47 +00:00

[v1.2.2] 版本修复

- [F] 修复 getDateInt() 可能报错的问题。
This commit is contained in:
Carm Jos 2022-01-07 00:51:15 +08:00
parent 52df1863f4
commit 988fe600ce
3 changed files with 9 additions and 5 deletions

View File

@ -15,7 +15,7 @@
<groupId>cc.carm.plugin</groupId>
<artifactId>ultradepository</artifactId>
<packaging>jar</packaging>
<version>1.2.1</version>
<version>1.2.2</version>
<name>UltraDepository</name>
<description>超级仓库插件,支持设定不同物品的存储仓库。</description>

View File

@ -117,7 +117,7 @@ public class UserData {
public Date getDate() {
return new Date(DateIntUtil.getDateMillis(getDateInt()));
return DateIntUtil.getDate(getDateInt());
}
public int getDateInt() {

View File

@ -22,10 +22,14 @@ public class DateIntUtil {
}
public static long getDateMillis(int dateInt) {
return getDate(dateInt).getTime();
}
public static Date getDate(int dateInt) {
try {
return getFormat().parse(Integer.toString(dateInt)).getTime();
} catch (ParseException e) {
return System.currentTimeMillis();
return (Date) getFormat().parse(Integer.toString(dateInt));
} catch (ParseException | NumberFormatException e) {
return new Date(System.currentTimeMillis());
}
}