Kaydet (Commit) 899e4725 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#706319 Uncaught exception

Change-Id: I582bc15b8065c9262c0933f1afa0bda6e1f5d94e
üst 9ab3abd2
......@@ -70,10 +70,11 @@ sal_Int32 SAL_CALL java_io_InputStream::available( ) throw(::com::sun::star::io
static jmethodID mID(NULL);
return callIntMethod_Throw("available", mID);
}
void SAL_CALL java_io_InputStream::closeInput( ) throw(::com::sun::star::io::NotConnectedException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception)
{
static jmethodID mID(NULL);
callVoidMethod_Throw("close",mID);
callVoidMethod_Nothrow("close",mID);
}
sal_Int32 SAL_CALL java_io_InputStream::readBytes( ::com::sun::star::uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead ) throw(::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment