summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Interpreter.cpp')
-rw-r--r--src/uscxml/Interpreter.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/uscxml/Interpreter.cpp b/src/uscxml/Interpreter.cpp
index fa3e227..6334065 100644
--- a/src/uscxml/Interpreter.cpp
+++ b/src/uscxml/Interpreter.cpp
@@ -707,24 +707,11 @@ void InterpreterImpl::processDOMorText(const Arabica::DOM::Node<std::string>& el
Arabica::SAX::InputSource<std::string> inputSource;
inputSource.setByteStream(ssPtr);
-// parser.setFeature(Arabica::SAX::FeatureNames<std::string>().external_general, true);
-
if (parser.parse(inputSource) && parser.getDocument()) {
Document<std::string> doc = parser.getDocument();
dom = doc.getDocumentElement();
-#if 0
- Node<std::string> content = doc.getDocumentElement();
- assert(content.getNodeType() == Node_base::ELEMENT_NODE);
- Node<std::string> container = doc.createElement("container");
- dom.replaceChild(container, content);
- container.appendChild(content);
-// std::cout << dom << std::endl;
-#endif
return;
} else {
- if (parser.errorsReported()) {
- LOG(ERROR) << parser.errors();
- }
text = srcContent.str();
return;
}