This commit is contained in:
looly 2021-11-30 18:02:36 +08:00
parent f07f786493
commit c1b889a2b4
3 changed files with 3 additions and 3 deletions

View File

@ -38,6 +38,7 @@
* 【http 】 修复HttpUtil.normalizeParams未判空导致的问题issue#1975@Github
* 【poi 】 修复读取日期类型的自定义样式单元格时间结果为1899年问题pr#1977@Github
* 【poi 】 修复SoapClient参数未使用问题
* 【core 】 修复HashUtil.cityHash128参数未使用问题
-------------------------------------------------------------------------------------------------------------

View File

@ -470,7 +470,6 @@ public class StrBuilder implements CharSequence, Appendable, Serializable {
/**
* 生成字符串
*/
@SuppressWarnings("NullableProblems")
@Override
public String toString() {
return toString(false);

View File

@ -543,6 +543,6 @@ public class HashUtil {
* @since 5.2.5
*/
public static long[] cityHash128(byte[] data, Number128 seed) {
return CityHash.hash128(data).getLongArray();
return CityHash.hash128(data, seed).getLongArray();
}
}
}