summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-27 14:25:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-27 14:26:51 +0200
commit11ba28a47d467ae7d747f7300c0bd82623b90ef6 (patch)
treef24375c7136843a7c88fb6a89935eb05eed17cc6 /cppuhelper
parentfd0d4f845da5c247be0543db34de9615be8f81a7 (diff)
Remove ancient OSL_DEBUG_LEVEL printf
...alerting about something that is not too exciting anyway Change-Id: I7596f14e52a0272762f923882f5f92fc3ac1ddf4
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/component_context.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx
index 55b126c1c7ca..776eef021eaf 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -22,10 +22,6 @@
#define CONTEXT_DIAG
#endif
-#if OSL_DEBUG_LEVEL > 0
-#include <stdio.h>
-#endif
-
#include <unordered_map>
#ifdef CONTEXT_DIAG
#include <map>
@@ -565,11 +561,6 @@ Any ComponentContext::lookupMap( OUString const & rName )
if (usesService >>= xFac2)
{
// try via old XSingleServiceFactory
-#if OSL_DEBUG_LEVEL > 0
- ::fprintf(
- stderr,
- "### omitting context for service instantiation!\n" );
-#endif
xInstance = args.getLength()
? xFac2->createInstanceWithArguments( args )
: xFac2->createInstance();