summaryrefslogtreecommitdiff
path: root/desktop/source/migration/services/jvmfwk.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-26 12:28:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-26 12:54:43 +0000
commite57ca02849c3d87142ff5ff9099a212e72b8139c (patch)
treebcce66b27261553c308779f3e8663a269ed3a671 /desktop/source/migration/services/jvmfwk.cxx
parent8802ebd5172ec4bc412a59d136c82b77ab452281 (diff)
Remove dynamic exception specifications
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop/source/migration/services/jvmfwk.cxx')
-rw-r--r--desktop/source/migration/services/jvmfwk.cxx122
1 files changed, 18 insertions, 104 deletions
diff --git a/desktop/source/migration/services/jvmfwk.cxx b/desktop/source/migration/services/jvmfwk.cxx
index aa3e15deb494..907651433414 100644
--- a/desktop/source/migration/services/jvmfwk.cxx
+++ b/desktop/source/migration/services/jvmfwk.cxx
@@ -86,108 +86,65 @@ class JavaMigration : public ::cppu::WeakImplHelper<
{
public:
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL supportsService( const OUString & rServiceName )
- throw (css::uno::RuntimeException, std::exception) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getImplementationName() override;
+ virtual sal_Bool SAL_CALL supportsService( const OUString & rServiceName ) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
//XInitialization
- virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
- throw(css::uno::Exception, css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
//XJob
virtual css::uno::Any SAL_CALL execute(
- const css::uno::Sequence<css::beans::NamedValue >& Arguments )
- throw (css::lang::IllegalArgumentException, css::uno::Exception,
- css::uno::RuntimeException, std::exception) override;
+ const css::uno::Sequence<css::beans::NamedValue >& Arguments ) override;
// XLayerHandler
- virtual void SAL_CALL startLayer()
- throw(css::lang::WrappedTargetException, std::exception) override;
+ virtual void SAL_CALL startLayer() override;
- virtual void SAL_CALL endLayer()
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ virtual void SAL_CALL endLayer() override;
virtual void SAL_CALL overrideNode(
const OUString& aName,
sal_Int16 aAttributes,
- sal_Bool bClear)
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ sal_Bool bClear) override;
virtual void SAL_CALL addOrReplaceNode(
const OUString& aName,
- sal_Int16 aAttributes)
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ sal_Int16 aAttributes) override;
virtual void SAL_CALL addOrReplaceNodeFromTemplate(
const OUString& aName,
const css::configuration::backend::TemplateIdentifier& aTemplate,
- sal_Int16 aAttributes )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ sal_Int16 aAttributes ) override;
- virtual void SAL_CALL endNode()
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ virtual void SAL_CALL endNode() override;
virtual void SAL_CALL dropNode(
- const OUString& aName )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ const OUString& aName ) override;
virtual void SAL_CALL overrideProperty(
const OUString& aName,
sal_Int16 aAttributes,
const css::uno::Type& aType,
- sal_Bool bClear )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ sal_Bool bClear ) override;
virtual void SAL_CALL setPropertyValue(
- const css::uno::Any& aValue )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ const css::uno::Any& aValue ) override;
virtual void SAL_CALL setPropertyValueForLocale(
const css::uno::Any& aValue,
- const OUString& aLocale )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ const OUString& aLocale ) override;
- virtual void SAL_CALL endProperty()
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ virtual void SAL_CALL endProperty() override;
virtual void SAL_CALL addProperty(
const OUString& aName,
sal_Int16 aAttributes,
- const css::uno::Type& aType )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ const css::uno::Type& aType ) override;
virtual void SAL_CALL addPropertyWithValue(
const OUString& aName,
sal_Int16 aAttributes,
- const css::uno::Any& aValue )
- throw(
- css::configuration::backend::MalformedDataException,
- css::lang::WrappedTargetException, std::exception ) override;
+ const css::uno::Any& aValue ) override;
virtual ~JavaMigration() override;
@@ -221,26 +178,22 @@ css::uno::Sequence< OUString > jvmfwk_getSupportedServiceNames()
// XServiceInfo
OUString SAL_CALL JavaMigration::getImplementationName()
- throw (css::uno::RuntimeException, std::exception)
{
return jvmfwk_getImplementationName();
}
sal_Bool JavaMigration::supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, ServiceName);
}
css::uno::Sequence< OUString > SAL_CALL JavaMigration::getSupportedServiceNames()
- throw (css::uno::RuntimeException, std::exception)
{
return jvmfwk_getSupportedServiceNames();
}
//XInitialization ----------------------------------------------------------------------
void SAL_CALL JavaMigration::initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
- throw(css::uno::Exception, css::uno::RuntimeException, std::exception)
{
const css::uno::Any* pIter = aArguments.getConstArray();
const css::uno::Any* pEnd = pIter + aArguments.getLength();
@@ -284,8 +237,6 @@ void SAL_CALL JavaMigration::initialize( const css::uno::Sequence< css::uno::Any
//XJob
css::uno::Any SAL_CALL JavaMigration::execute(
const css::uno::Sequence<css::beans::NamedValue >& )
- throw (css::lang::IllegalArgumentException, css::uno::Exception,
- css::uno::RuntimeException, std::exception)
{
migrateJavarc();
if (m_xLayer.is())
@@ -330,15 +281,11 @@ void JavaMigration::migrateJavarc()
// XLayerHandler
void SAL_CALL JavaMigration::startLayer()
- throw(css::lang::WrappedTargetException, std::exception)
{
}
void SAL_CALL JavaMigration::endLayer()
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
@@ -347,9 +294,6 @@ void SAL_CALL JavaMigration::overrideNode(
const OUString&,
sal_Int16,
sal_Bool)
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
@@ -359,25 +303,16 @@ void SAL_CALL JavaMigration::overrideNode(
void SAL_CALL JavaMigration::addOrReplaceNode(
const OUString&,
sal_Int16)
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
void SAL_CALL JavaMigration::endNode()
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
void SAL_CALL JavaMigration::dropNode(
const OUString& )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
@@ -387,9 +322,6 @@ void SAL_CALL JavaMigration::overrideProperty(
sal_Int16,
const Type&,
sal_Bool )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
if ( aName == "Enable" )
m_aStack.push(TElementStack::value_type(aName,ENABLE_JAVA));
@@ -400,9 +332,6 @@ void SAL_CALL JavaMigration::overrideProperty(
void SAL_CALL JavaMigration::setPropertyValue(
const Any& aValue )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
if ( !m_aStack.empty())
{
@@ -446,17 +375,11 @@ void SAL_CALL JavaMigration::setPropertyValue(
void SAL_CALL JavaMigration::setPropertyValueForLocale(
const Any&,
const OUString& )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
void SAL_CALL JavaMigration::endProperty()
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
if (!m_aStack.empty())
m_aStack.pop();
@@ -467,9 +390,6 @@ void SAL_CALL JavaMigration::addProperty(
const OUString&,
sal_Int16,
const Type& )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
@@ -478,9 +398,6 @@ void SAL_CALL JavaMigration::addPropertyWithValue(
const OUString&,
sal_Int16,
const Any& )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}
@@ -488,9 +405,6 @@ void SAL_CALL JavaMigration::addOrReplaceNodeFromTemplate(
const OUString&,
const TemplateIdentifier&,
sal_Int16 )
- throw(
- MalformedDataException,
- WrappedTargetException, std::exception )
{
}