Skip to content

Commit

Permalink
temp-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
thevar1able committed Nov 14, 2023
1 parent cc3dfaf commit 608b000
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Common/Config/ConfigProcessor.cpp
Expand Up @@ -326,11 +326,11 @@ void ConfigProcessor::mergeRecursive(XMLDocumentPtr config, Node * config_root,
NodePtr new_node = config->importNode(with_node, true);
config_root->replaceChild(new_node, config_node);
}
else if (with_element.hasChildNodes() && with_element.firstChild()->nodeType() == Node::TEXT_NODE)
{
NodePtr new_node = config->importNode(with_node, true);
config_root->replaceChild(new_node, config_node);
}
// else if (with_element.hasChildNodes() && with_element.firstChild()->nodeType() == Node::TEXT_NODE)
// {
// NodePtr new_node = config->importNode(with_node, true);
// config_root->replaceChild(new_node, config_node);
// }
else
{
Element & config_element = dynamic_cast<Element &>(*config_node);
Expand Down

0 comments on commit 608b000

Please sign in to comment.