Kaydet (Commit) 1be196c7 authored tarafından Caolán McNamara's avatar Caolán McNamara

WaE: unused variables

üst 39d6e42c
......@@ -347,7 +347,8 @@ css::uno::Reference< css::container::XEnumeration > SAL_CALL ModuleManager::crea
lResult.push_back(css::uno::makeAny(lModuleProps.getAsConstPropertyValueList()));
}
catch(const css::uno::Exception&)
{}
{
}
}
::comphelper::OAnyEnumeration* pEnum = new ::comphelper::OAnyEnumeration(lResult.getAsConstList());
......@@ -377,10 +378,14 @@ css::uno::Reference< css::container::XNameAccess > ModuleManager::implts_getConf
CFGPATH_FACTORIES,
::comphelper::ConfigurationHelper::E_READONLY);
}
catch(const css::uno::RuntimeException& exRun)
{ throw; }
catch(const css::uno::RuntimeException&)
{
throw;
}
catch(const css::uno::Exception&)
{ xCfg.clear(); }
{
xCfg.clear();
}
// SAFE -> ----------------------------------
WriteGuard aWriteLock(m_aLock);
......
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