diff --git a/src/utils/introspectionRegistry.cpp b/src/utils/introspectionRegistry.cpp index 7a711af..6b093e9 100644 --- a/src/utils/introspectionRegistry.cpp +++ b/src/utils/introspectionRegistry.cpp @@ -68,19 +68,6 @@ int16 IntrospectionRegistry::registerIntrospectionInterface(FieldConstPtr const return key; } -void IntrospectionRegistry::printKeysAndValues(string name) -{ - cout << "############## print of all key/values of " << name.c_str() << " registry : ###################" << endl; - for(registryMap_t::iterator registryIter = _registry.begin(); registryIter != _registry.end(); registryIter++) - { - cout << "\t" << "Key: "<< registryIter->first << endl; - cout << "\t" << "Value: " << registryIter->second << endl; - - cout << "\t" << "References: " << registryIter->second << endl; - cout << "\t" << "Value: " << *(registryIter->second) << endl; - } -} - // TODO slow !!!! bool IntrospectionRegistry::registryContainsValue(FieldConstPtr const & field, int16& key) { diff --git a/src/utils/introspectionRegistry.h b/src/utils/introspectionRegistry.h index 27f6212..8dc0a66 100644 --- a/src/utils/introspectionRegistry.h +++ b/src/utils/introspectionRegistry.h @@ -47,7 +47,6 @@ typedef std::map registryMap_t; IntrospectionRegistry(); virtual ~IntrospectionRegistry(); - void printKeysAndValues(std::string name); /** * Resets registry, i.e. must be done when transport is changed (server restarted). */