diff options
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/tools/fastserializer.cxx | 22 | ||||
-rw-r--r-- | sax/source/tools/fastserializer.hxx | 5 |
2 files changed, 0 insertions, 27 deletions
diff --git a/sax/source/tools/fastserializer.cxx b/sax/source/tools/fastserializer.cxx index 68e2f5ebfac5..ebd0467caade 100644 --- a/sax/source/tools/fastserializer.cxx +++ b/sax/source/tools/fastserializer.cxx @@ -320,11 +320,6 @@ namespace sax_fastparser { return seq; } - OUString FastSaxSerializer::getImplementationName_Static() - { - return OUString(RTL_CONSTASCII_USTRINGPARAM( SERIALIZER_IMPLEMENTATION_NAME )); - } - Sequence< OUString > FastSaxSerializer::getSupportedServiceNames_Static(void) { Sequence<OUString> aRet(1); @@ -346,23 +341,6 @@ namespace sax_fastparser { } } -#if DEBUG - void FastSaxSerializer::printMarkStack( ) - { - ::std::stack< boost::shared_ptr< ForMerge > > aCopy( maMarkStack ); - int nSize = aCopy.size(); - int i = 0; - while ( !aCopy.empty() ) - { - std::cerr << nSize - i << "\n"; - aCopy.top( )->print( ); - std::cerr << "\n"; - aCopy.pop( ); - i++; - } - } -#endif - void FastSaxSerializer::mergeTopMarks( sax_fastparser::MergeMarksEnum eMergeType ) { if ( maMarkStack.empty() ) diff --git a/sax/source/tools/fastserializer.hxx b/sax/source/tools/fastserializer.hxx index 961875194a20..57126cbf8585 100644 --- a/sax/source/tools/fastserializer.hxx +++ b/sax/source/tools/fastserializer.hxx @@ -61,7 +61,6 @@ public: // The implementation details static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void); - static ::rtl::OUString getImplementationName_Static(); // XFastSerializer virtual void SAL_CALL startDocument( ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); @@ -183,10 +182,6 @@ private: void sort(); }; -#if DEBUG - void printMarkStack( ); -#endif - ::std::stack< boost::shared_ptr< ForMerge > > maMarkStack; void writeFastAttributeList( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ); |