修正调用

This commit is contained in:
Zhu Kaixiao 2021-04-02 15:27:13 +08:00
parent 6e6aa91a90
commit d244650ebc

View File

@ -166,7 +166,7 @@ public class SolarTerms {
*/
public static String getTerm(Date date) {
final DateTime dt = DateUtil.date(date);
return getTerm(dt.year(), dt.month() + 1, dt.dayOfMonth());
return getTerm0(dt.year(), dt.month() + 1, dt.dayOfMonth());
}