From e7bc3cab019fbf040f9fb8b53ae2cf3f977d200b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 23 May 2014 12:03:21 +0200 Subject: remove boilerplate in UNO Exception constructor calls Now that we have default values for Exception constructor params, remove lots of boilerplate code. Change-Id: I620bd641eecfed38e6123873b3b94aaf47922e74 --- stoc/source/defaultregistry/defaultregistry.cxx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'stoc/source/defaultregistry') diff --git a/stoc/source/defaultregistry/defaultregistry.cxx b/stoc/source/defaultregistry/defaultregistry.cxx index c67cc621971f..37ff4a47b8b4 100644 --- a/stoc/source/defaultregistry/defaultregistry.cxx +++ b/stoc/source/defaultregistry/defaultregistry.cxx @@ -1158,8 +1158,7 @@ Any RegistryEnumueration::nextElement( ) } else { - throw NoSuchElementException( OUString( - "NestedRegistry: no nextElement() !" ),Reference< XInterface > () ); + throw NoSuchElementException( "NestedRegistry: no nextElement() !" ); } return a; } @@ -1242,8 +1241,7 @@ void SAL_CALL NestedRegistryImpl::open( const OUString&, sal_Bool, sal_Bool ) throw(InvalidRegistryException, RuntimeException, std::exception) { throw InvalidRegistryException( - OUString("the 'open' method is not specified for a nested registry"), - Reference< XInterface >() ); + "the 'open' method is not specified for a nested registry" ); } @@ -1283,8 +1281,7 @@ void SAL_CALL NestedRegistryImpl::destroy( ) throw(InvalidRegistryException, RuntimeException, std::exception) { throw InvalidRegistryException( - OUString("the 'destroy' method is not specified for a nested registry"), - Reference< XInterface >() ); + "the 'destroy' method is not specified for a nested registry" ); } -- cgit