diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-12-11 17:48:54 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-12-11 18:57:26 +0100 |
commit | b249197f262c7f768a8fad74b3f5b20adc8d5aad (patch) | |
tree | 8c43368cf349d0078a21a8a389939f8f63fe0c00 | |
parent | 6c41a1272e43a3e3b785724991837b597dbf00ef (diff) |
writerfilter: clean up useless debug output in ooxmltok
OOXMLFastDocumentHandler::createFastChildContext() is called for the
streams we expect, no need to unconditionally produce output there.
Change-Id: I164b3c4dc6f2294487e1b1283266957d8f24cbbb
-rw-r--r-- | writerfilter/source/ooxml/OOXMLFastDocumentHandler.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.cxx b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.cxx index 740bc33ce0df..a8d41804299d 100644 --- a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.cxx +++ b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.cxx @@ -142,12 +142,6 @@ uno::Reference< xml::sax::XFastContextHandler > SAL_CALL const uno::Reference< xml::sax::XFastAttributeList > & /*Attribs*/) throw (uno::RuntimeException, xml::sax::SAXException, std::exception) { -#ifdef DEBUG_WRITERFILTER - clog << this << ":createFastChildContext:" - << fastTokenToId(Element) - << endl; -#endif - if ( mpStream == nullptr && mpDocument == nullptr ) { // document handler has been created as unknown child - see <OOXMLFastDocumentHandler::createUnknownChildContext(..)> |