This commit is contained in:
Looly
2022-06-18 23:54:06 +08:00
parent d9601cbbf5
commit 96c9a3529c
2 changed files with 2 additions and 1 deletions

View File

@@ -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;