diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-26 18:14:48 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-26 23:08:52 +0200 |
commit | e8e2ce6c67dae32366d442ae52c09863b9959733 (patch) | |
tree | e11df183b1b4f0657a8262664adc855d023fe015 | |
parent | d2d18606f8e1ab95599a8704d0a713464bd366ed (diff) |
Why OSL_ENSURE something that is not required?
-rw-r--r-- | cppuhelper/source/shlib.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index 1be484c49336..8099ef0bc038 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -242,15 +242,6 @@ static OUString makeComponentPath( sal_Int32 nEnd = endsWith( rLibName, OUSTR(SAL_DLLEXTENSION) ); if (nEnd < 0) // !endsWith { -#ifndef OS2 -//this is always triggered with .uno components -#if (OSL_DEBUG_LEVEL >= 2) - OSL_ENSURE( - !"### library name has no proper extension!", - OUStringToOString( rLibName, RTL_TEXTENCODING_ASCII_US ).getStr() ); -#endif -#endif // OS2 - #if defined SAL_DLLPREFIX nEnd = endsWith( rLibName, OUSTR(".uno") ); if (nEnd < 0) // !endsWith |