mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
fix bug
This commit is contained in:
parent
f07f786493
commit
c1b889a2b4
@ -38,6 +38,7 @@
|
|||||||
* 【http 】 修复HttpUtil.normalizeParams未判空导致的问题(issue#1975@Github)
|
* 【http 】 修复HttpUtil.normalizeParams未判空导致的问题(issue#1975@Github)
|
||||||
* 【poi 】 修复读取日期类型的自定义样式单元格时间结果为1899年问题(pr#1977@Github)
|
* 【poi 】 修复读取日期类型的自定义样式单元格时间结果为1899年问题(pr#1977@Github)
|
||||||
* 【poi 】 修复SoapClient参数未使用问题
|
* 【poi 】 修复SoapClient参数未使用问题
|
||||||
|
* 【core 】 修复HashUtil.cityHash128参数未使用问题
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -470,7 +470,6 @@ public class StrBuilder implements CharSequence, Appendable, Serializable {
|
|||||||
/**
|
/**
|
||||||
* 生成字符串
|
* 生成字符串
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("NullableProblems")
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return toString(false);
|
return toString(false);
|
||||||
|
@ -543,6 +543,6 @@ public class HashUtil {
|
|||||||
* @since 5.2.5
|
* @since 5.2.5
|
||||||
*/
|
*/
|
||||||
public static long[] cityHash128(byte[] data, Number128 seed) {
|
public static long[] cityHash128(byte[] data, Number128 seed) {
|
||||||
return CityHash.hash128(data).getLongArray();
|
return CityHash.hash128(data, seed).getLongArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user