summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stoc/source/inspect/introspection.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx
index 9869b4c6bd05..20b6826cf312 100644
--- a/stoc/source/inspect/introspection.cxx
+++ b/stoc/source/inspect/introspection.cxx
@@ -1326,30 +1326,6 @@ Sequence< Reference<XIdlMethod> > ImplIntrospectionAccess::getMethods(sal_Int32
sal_Int32 nConcept = pConcepts[ i ];
if( nConcept & MethodConcepts )
pDestMethods[ iDest++ ] = pSourceMethods[ i ];
-
- #if OSL_DEBUG_LEVEL > 0
- static bool debug = false;
- if ( debug )
- {
- // Methode mit Concepts ausgeben
- const Reference< XIdlMethod >& rxMethod = pSourceMethods[ i ];
- OString aNameStr = OUStringToOString( rxMethod->getName(), osl_getThreadTextEncoding() );
- OString ConceptStr;
- if( nConcept & MethodConcept::DANGEROUS )
- ConceptStr += "DANGEROUS |";
- if( nConcept & MethodConcept::PROPERTY )
- ConceptStr += "PROPERTY |";
- if( nConcept & MethodConcept::LISTENER )
- ConceptStr += "LISTENER |";
- if( nConcept & MethodConcept::ENUMERATION )
- ConceptStr += "ENUMERATION |";
- if( nConcept & MethodConcept::NAMECONTAINER )
- ConceptStr += "NAMECONTAINER |";
- if( nConcept & MethodConcept::INDEXCONTAINER )
- ConceptStr += "INDEXCONTAINER |";
- OSL_TRACE( "Method %ld: %s, Concepts = %s", i, aNameStr.getStr(), ConceptStr.getStr() );
- }
- #endif
}
// Auf die richtige Laenge bringen