summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-21 13:22:00 +0200
committerNoel Grandin <noel@peralex.com>2014-02-25 15:16:56 +0200
commit7efa467ef31d3f053c79bc189b3dbec957747ae5 (patch)
treebca63b3046feccd4a87cf448a1fc27bd34b14433 /sax
parent333fdb95a384e560b201614ece56bc5369bd46da (diff)
remove unused code sax_fastparser::FastSerializerHelper::copyTopMarkPop()
Change-Id: If1dd0e99d83f8211c58fa3b5d1ba56a74bc2157f
Diffstat (limited to 'sax')
-rw-r--r--sax/source/tools/fastserializer.cxx8
-rw-r--r--sax/source/tools/fastserializer.hxx1
-rw-r--r--sax/source/tools/fshelper.cxx5
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 );