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
d9601cbbf5
commit
96c9a3529c
@ -16,6 +16,7 @@
|
||||
* 【extra 】 修复createExtractor中抛出异常后流未关闭问题(pr#2384@Github)
|
||||
* 【core 】 修复CsvData.getHeader没有判空导致空指针问题(issue#I5CK7Q@Gitee)
|
||||
* 【core 】 修复单字母转换为数字的问题(issue#I5C4K1@Gitee)
|
||||
* 【core 】 修复IterUtil.filter无效问题
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
@ -689,7 +689,7 @@ public class IterUtil {
|
||||
for (T t : iter) {
|
||||
modified = (null == editor) ? t : editor.edit(t);
|
||||
if (null != modified) {
|
||||
result.add(t);
|
||||
result.add(modified);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user