summaryrefslogtreecommitdiff
path: root/xmlscript/source/xml_helper/xml_byteseq.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlscript/source/xml_helper/xml_byteseq.cxx')
-rw-r--r--xmlscript/source/xml_helper/xml_byteseq.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/xmlscript/source/xml_helper/xml_byteseq.cxx b/xmlscript/source/xml_helper/xml_byteseq.cxx
index ea275fc3de8d..b9dd1caca3a4 100644
--- a/xmlscript/source/xml_helper/xml_byteseq.cxx
+++ b/xmlscript/source/xml_helper/xml_byteseq.cxx
@@ -39,7 +39,6 @@ class BSeqInputStream
public:
inline BSeqInputStream( ByteSequence const & rSeq )
- SAL_THROW(())
: _seq( rSeq )
, _nPos( 0 )
{}
@@ -105,7 +104,6 @@ class BSeqOutputStream
public:
inline BSeqOutputStream( ByteSequence * seq )
- SAL_THROW(())
: _seq( seq )
{}
@@ -139,13 +137,11 @@ void BSeqOutputStream::closeOutput()
}
Reference< io::XInputStream > SAL_CALL createInputStream( ByteSequence const & rInData )
- SAL_THROW(())
{
return new BSeqInputStream( rInData );
}
Reference< io::XOutputStream > SAL_CALL createOutputStream( ByteSequence * pOutData )
- SAL_THROW(())
{
return new BSeqOutputStream( pOutData );
}