diff options
Diffstat (limited to 'sal/osl/all/loadmodulerelative.cxx')
-rw-r--r-- | sal/osl/all/loadmodulerelative.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sal/osl/all/loadmodulerelative.cxx b/sal/osl/all/loadmodulerelative.cxx index ef3df35edc66..bc599c59d775 100644 --- a/sal/osl/all/loadmodulerelative.cxx +++ b/sal/osl/all/loadmodulerelative.cxx @@ -48,9 +48,7 @@ oslModule SAL_CALL osl_loadModuleRelative( abs = rtl::Uri::convertRelToAbs(base, relativePath); } catch (const rtl::MalformedUriException & e) { (void) e; // avoid warnings - SAL_INFO("sal.osl", - "rtl::MalformedUriException <" << e.getMessage() << ">"); - //TODO: let some OSL_TRACE variant take care of text conversion? + SAL_INFO("sal.osl", "rtl::MalformedUriException <" << e.getMessage() << ">"); return nullptr; } return osl_loadModule(abs.pData, mode); |