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