Issue #1695 Minor fix to update objects in LifecycleManager
Change-Id: I56fbc283f560d38aa5392845060050ee7264e2da Former-commit-id:fdd6e67a48
[formerly6356110226
[formerly de0c63581e75c16445d8fd87aca5be594f7732aa]] Former-commit-id:6356110226
Former-commit-id:e19817e9e1
This commit is contained in:
parent
718c3f2cd5
commit
fc836ea9ef
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ public class RegistryXPathProcessor {
|
|||
Node currentNode = nodeList.item(i);
|
||||
checkForProhibitedUpdates(currentNode);
|
||||
Node newNode = toDom(addNode).getDocumentElement();
|
||||
Node importedNode = domDocument.importNode(newNode, false);
|
||||
Node importedNode = domDocument.importNode(newNode, true);
|
||||
currentNode.appendChild(importedNode);
|
||||
}
|
||||
// Converts the updated object back from DOM
|
||||
|
|
Loading…
Add table
Reference in a new issue