diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-13 10:48:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-13 10:53:28 +0100 |
commit | e37388c7de15242b7af0bf9fdc48c6d194d8cd94 (patch) | |
tree | c2a335c6cb1dcb00fbd98567256ff10e28533f5e /stoc | |
parent | fd8ee703c8322252ed2a4769efce6bfa067d2652 (diff) |
Remove unused debug code
Change-Id: I40d7e0670539a86f01a539cf8acb10fa7bd27079
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/inspect/introspection.cxx | 24 |
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 |