summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp')
-rw-r--r--TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp b/TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp
index 751464970aa..6c56f10a44e 100644
--- a/TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp
+++ b/TAO/CIAO/tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp
@@ -3,7 +3,7 @@
#include "ComponentPropertyDescription_Handler.h"
#include "DataType_Handler.h"
#include "ciao/Deployment_DataC.h"
-#include "ciao/CIAO_common.h"
+
namespace CIAO
{
namespace Config_Handlers
@@ -13,7 +13,6 @@ namespace CIAO
const ComponentPropertyDescription& desc,
::Deployment::ComponentPropertyDescription& toconfig)
{
- CIAO_TRACE("ComponentPropertyDescription_Handler::component_property_description");
toconfig.name = CORBA::string_dup (desc.name ().c_str ());
// Delegate the DataType to the
@@ -30,7 +29,6 @@ namespace CIAO
ComponentPropertyDescription_Handler::component_property_description (
const ::Deployment::ComponentPropertyDescription &src)
{
- CIAO_TRACE("ComponentPropertyDescription_Handler::component_property_description - reverse");
XMLSchema::string< char > name ((src.name));
DataType dt (DataType_Handler::data_type (src.type));
ComponentPropertyDescription cpd (name,dt);