mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix bug
This commit is contained in:
parent
4b2f726f5e
commit
854d7a9380
@ -11,6 +11,7 @@
|
||||
* 【core】 ZipUtil修改策略:默认关闭输入流(issue#604@Github)
|
||||
### Bug修复
|
||||
* 【core】 解决ConcurrentHashSet不能序列化的问题(issue#600@Github)
|
||||
* 【core】 解决CsvReader.setErrorOnDifferentFieldCount循环调用问题
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
@ -85,7 +85,7 @@ public final class CsvReader implements Serializable{
|
||||
* @param errorOnDifferentFieldCount 每行字段个数不同时是否抛出异常,默认false
|
||||
*/
|
||||
public void setErrorOnDifferentFieldCount(boolean errorOnDifferentFieldCount) {
|
||||
this.setErrorOnDifferentFieldCount(errorOnDifferentFieldCount);
|
||||
this.config.setErrorOnDifferentFieldCount(errorOnDifferentFieldCount);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user