diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-21 13:22:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-25 15:16:56 +0200 |
commit | 7efa467ef31d3f053c79bc189b3dbec957747ae5 (patch) | |
tree | bca63b3046feccd4a87cf448a1fc27bd34b14433 /sax/source/tools | |
parent | 333fdb95a384e560b201614ece56bc5369bd46da (diff) |
remove unused code sax_fastparser::FastSerializerHelper::copyTopMarkPop()
Change-Id: If1dd0e99d83f8211c58fa3b5d1ba56a74bc2157f
Diffstat (limited to 'sax/source/tools')
-rw-r--r-- | sax/source/tools/fastserializer.cxx | 8 | ||||
-rw-r--r-- | sax/source/tools/fastserializer.hxx | 1 | ||||
-rw-r--r-- | sax/source/tools/fshelper.cxx | 5 |
3 files changed, 0 insertions, 14 deletions
diff --git a/sax/source/tools/fastserializer.cxx b/sax/source/tools/fastserializer.cxx index a12c8ab63b73..4005a252b49f 100644 --- a/sax/source/tools/fastserializer.cxx +++ b/sax/source/tools/fastserializer.cxx @@ -309,14 +309,6 @@ namespace sax_fastparser { } } - void FastSaxSerializer::copyTopMarkPop() - { - assert (!maSavedMarkStack.empty()); - maMarkStack.push(maSavedMarkStack.top()); - mergeTopMarks(); - maSavedMarkStack.pop(); - } - void FastSaxSerializer::writeBytes( const Sequence< ::sal_Int8 >& aData ) throw ( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException ) { if ( maMarkStack.empty() ) diff --git a/sax/source/tools/fastserializer.hxx b/sax/source/tools/fastserializer.hxx index 874a25e561b2..0f20efc5f87e 100644 --- a/sax/source/tools/fastserializer.hxx +++ b/sax/source/tools/fastserializer.hxx @@ -146,7 +146,6 @@ public: @see mark() */ void mergeTopMarks( sax_fastparser::MergeMarksEnum eMergeType = sax_fastparser::MERGE_MARKS_APPEND ); - void copyTopMarkPop(); private: ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > mxOutputStream; diff --git a/sax/source/tools/fshelper.cxx b/sax/source/tools/fshelper.cxx index 43a373086726..45f8d23c9543 100644 --- a/sax/source/tools/fshelper.cxx +++ b/sax/source/tools/fshelper.cxx @@ -161,11 +161,6 @@ void FastSerializerHelper::mergeTopMarks( MergeMarksEnum eMergeType ) mpSerializer->mergeTopMarks( eMergeType ); } -void FastSerializerHelper::copyTopMarkPop() -{ - mpSerializer->copyTopMarkPop(); -} - FastAttributeList * FastSerializerHelper::createAttrList() { return new FastAttributeList( mxTokenHandler ); |