summaryrefslogtreecommitdiff
path: root/ace/Framework_Component.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-01-21 11:02:02 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-01-21 11:02:02 +0000
commit6c62225b8ad01a772cc03a505ed09dc4b95b9115 (patch)
tree2f5ec9149e875c3d5b16229dcca52c1da707d055 /ace/Framework_Component.cpp
parent309399c9d1a3139ef13b2c19eed50fd5bffc5f73 (diff)
downloadATCD-6c62225b8ad01a772cc03a505ed09dc4b95b9115.tar.gz
ChangeLogTag:Mon Jan 21 03:00:14 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace/Framework_Component.cpp')
-rw-r--r--ace/Framework_Component.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/ace/Framework_Component.cpp b/ace/Framework_Component.cpp
index 119e393daf4..d8cdb7e8ce2 100644
--- a/ace/Framework_Component.cpp
+++ b/ace/Framework_Component.cpp
@@ -115,13 +115,10 @@ ACE_Framework_Repository::register_component (const ACE_Framework_Component *fc)
ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1));
int i;
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT("register_component\n")));
-
// Check to see if it's already registered
for (i = 0; i < this->current_size_; i++)
if (fc->this_ == this->component_vector_[i]->this_)
{
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("Component already registered.\n")));
// Delete it since it's already here and component adapter was newed.
delete fc;
return 0;
@@ -129,7 +126,6 @@ ACE_Framework_Repository::register_component (const ACE_Framework_Component *fc)
if (i < this->total_size_)
{
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("Component registered.\n")));
this->component_vector_[i] = fc;
this->current_size_++;
return 0;