summaryrefslogtreecommitdiff
path: root/unotools/source/streaming/streamhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/streaming/streamhelper.cxx')
-rw-r--r--unotools/source/streaming/streamhelper.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/unotools/source/streaming/streamhelper.cxx b/unotools/source/streaming/streamhelper.cxx
index 569d6e180dd0..b7745491a814 100644
--- a/unotools/source/streaming/streamhelper.cxx
+++ b/unotools/source/streaming/streamhelper.cxx
@@ -22,19 +22,16 @@
namespace utl
{
-
void SAL_CALL OInputStreamHelper::acquire() throw ()
{
InputStreamHelper_Base::acquire();
}
-
void SAL_CALL OInputStreamHelper::release() throw ()
{
InputStreamHelper_Base::release();
}
-
sal_Int32 SAL_CALL OInputStreamHelper::readBytes(staruno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead)
throw(stario::NotConnectedException, stario::BufferSizeExceededException, stario::IOException, staruno::RuntimeException, std::exception)
{
@@ -83,7 +80,6 @@ sal_Int64 SAL_CALL OInputStreamHelper::getLength( ) throw(::com::sun::star::io:
return aStat.nSize;
}
-
sal_Int32 SAL_CALL OInputStreamHelper::readSomeBytes(staruno::Sequence< sal_Int8 >& aData,
sal_Int32 nMaxBytesToRead)
throw (stario::NotConnectedException, stario::BufferSizeExceededException, stario::IOException, staruno::RuntimeException, std::exception)
@@ -92,7 +88,6 @@ sal_Int32 SAL_CALL OInputStreamHelper::readSomeBytes(staruno::Sequence< sal_Int8
return readBytes(aData, nMaxBytesToRead);
}
-
void SAL_CALL OInputStreamHelper::skipBytes(sal_Int32 nBytesToSkip)
throw (stario::NotConnectedException, stario::BufferSizeExceededException, stario::IOException, staruno::RuntimeException, std::exception)
{
@@ -106,7 +101,6 @@ void SAL_CALL OInputStreamHelper::skipBytes(sal_Int32 nBytesToSkip)
m_nActPos += nBytesToSkip;
}
-
sal_Int32 SAL_CALL OInputStreamHelper::available()
throw (stario::NotConnectedException, stario::IOException, staruno::RuntimeException, std::exception)
{
@@ -117,7 +111,6 @@ sal_Int32 SAL_CALL OInputStreamHelper::available()
return m_nAvailable;
}
-
void SAL_CALL OInputStreamHelper::closeInput()
throw (stario::NotConnectedException, stario::IOException, staruno::RuntimeException, std::exception)
{
@@ -130,5 +123,4 @@ void SAL_CALL OInputStreamHelper::closeInput()
} // namespace utl
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */