summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-01-10 12:45:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-01-10 14:39:59 +0100
commit22d6274b756704b68b444064086381d069f55a0c (patch)
tree21658048656f8b41f1e13d12c03b6566bbc71bd6 /desktop/source
parentf8c12eca80b1faa65f130dfc64c303dcf88a3ac9 (diff)
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 <Samuel.Mehrbrodt@cib.de> Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/deployment/manager/dp_manager.cxx3
1 files changed, 0 insertions, 3 deletions
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;
}