This commit is contained in:
Looly 2019-10-29 13:00:35 +08:00
parent 4b2f726f5e
commit 854d7a9380
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
* 【core】 ZipUtil修改策略:默认关闭输入流issue#604@Github
### Bug修复
* 【core】 解决ConcurrentHashSet不能序列化的问题issue#600@Github
* 【core】 解决CsvReader.setErrorOnDifferentFieldCount循环调用问题
-------------------------------------------------------------------------------------------------------------

View File

@ -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);
}
/**