|
@@ -34,7 +34,8 @@ public class OrdinaryAssistant {
|
|
|
} else {
|
|
|
targetKey = arry[1];
|
|
|
}
|
|
|
- if (!retMap.containsKey(targetKey) || StringUtil.isNotBlank(sourceMap_.get(sourceKey))) {
|
|
|
+ if (StringUtil.isNotBlank(sourceMap_.get(sourceKey))
|
|
|
+ &&(!retMap.containsKey(targetKey)||StringUtil.isBlank(retMap.get(targetKey)))) {
|
|
|
retMap.put(targetKey, sourceMap_.get(sourceKey));
|
|
|
}
|
|
|
removeKey.add(sourceKey);
|