summaryrefslogtreecommitdiff
path: root/sax/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-12-28 14:08:33 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-05 09:18:15 +0000
commitf80d46233150d36183ec3e03708f9f6290c8c339 (patch)
tree6711eae57d7fe77f005c6be2987b4457f4598872 /sax/source
parent5a4c200bb75e9047b8780a9c1cfcad6caf3f6023 (diff)
callcatcher: drop some unused methods
Diffstat (limited to 'sax/source')
-rw-r--r--sax/source/tools/fastserializer.cxx22
-rw-r--r--sax/source/tools/fastserializer.hxx5
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 );