desktop/source/deployment/manager/dp_manager.cxx | 3 --- 1 file changed, 3 deletions(-)
New commits: commit 22d6274b756704b68b444064086381d069f55a0c Author: Stephan Bergmann <[email protected]> AuthorDate: Fri Jan 10 12:45:52 2020 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Fri Jan 10 14:39:59 2020 +0100 Remove catch block for css::lang::IllegalArgumentException ...(which derives from css::uno::RuntimeException, so will be handled just fine by the following catch block), which has become redundant with 90cab308f52468edbf87a7f06a1ef99f146f03a5 "unopkg: Remove too verbose logging" Change-Id: I42f352abfc28010b1d10cd86d6f780781be8737e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86527 Reviewed-by: Samuel Mehrbrodt <[email protected]> Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/desktop/source/deployment/manager/dp_manager.cxx b/desktop/source/deployment/manager/dp_manager.cxx index b592a77c152b..5d86410ef145 100644 --- a/desktop/source/deployment/manager/dp_manager.cxx +++ b/desktop/source/deployment/manager/dp_manager.cxx @@ -1066,9 +1066,6 @@ Reference<deployment::XPackage> PackageManagerImpl::getDeployedPackage( const ::osl::MutexGuard guard( getMutex() ); return getDeployedPackage_( id, fileName, xCmdEnv ); } - catch (const lang::IllegalArgumentException &) { - throw; - } catch (const RuntimeException &) { throw; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
