Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

1.5.6

Compare
Choose a tag to compare
@venusdrogon venusdrogon released this 31 May 06:04
· 1259 commits to master since this release

[Feature]

  • remove @version
  • update @author

[Update]

DateFormatUtil

  • if param locale is null,will use Locale.getDefault()

ClassUtil

  • rename boolean isInstance(Object obj,Class<?>[] klasses) to boolean isInstanceAnyClass(Object obj,Class<?>[] klasses)

ConvertUtil

  • change List<T> toList(T[] arrays) to List<T> toList(T...arrays)

JsonUtil

  • change Map<String, Object> toMap(String json) method to <T> Map<String, T> toMap(String json)
  • change String formatObjectFiledsNameAndValueMap(Object obj) method to String formatObjectFieldsNameAndValueMap(Object obj)

[Remove]

DateExtensionUtil

  • remove String getEnglishWeek(int week) method
  • remove String getChineseWeek(int week) method

CalendarUtil

  • remove int getDayOfYear(int year,int month,int day)
  • remove int getMaxDayOfMonth(int year,int month)

[Fix Bug] 🐛

  • none