mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
fix MapToMap ignoreNullValue
This commit is contained in:
parent
1be615c822
commit
ca40d7448e
@ -49,7 +49,7 @@ public class MapToMapCopier extends AbsCopier<Map, Map> {
|
||||
return;
|
||||
}
|
||||
// 忽略空值
|
||||
if (false == copyOptions.ignoreNullValue && sValue == null) {
|
||||
if (true == copyOptions.ignoreNullValue && sValue == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user