summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-04-28 11:34:22 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-04-28 11:34:22 +0000
commite1a2890e3a46d002e7ff160ffe94ef56859c32af (patch)
tree31dc1557f43f6a49b4e02757cda895630607ab34
parent7166e240933aaf65fcfa2a859090abdf90cce260 (diff)
downloadATCD-e1a2890e3a46d002e7ff160ffe94ef56859c32af.tar.gz
ChangeLogTag:Wed Apr 28 06:32:15 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/TAO_IDL/be/be_visitor_exception/exception_cs.cpp7
-rw-r--r--TAO/tao/Exception.cpp8
3 files changed, 8 insertions, 15 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index b5287d1663e..ba295af9f0b 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Wed Apr 28 06:32:15 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * TAO_IDL/be/be_visitor_exception/exception_cs.cpp:
+ * tao/Exception.cpp:
+
+ Removed the comment that _type () is decremented. Infact its
+ not.
+
Wed Apr 28 10:41:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/AMH_Oneway/client.cpp:
diff --git a/TAO/TAO_IDL/be/be_visitor_exception/exception_cs.cpp b/TAO/TAO_IDL/be/be_visitor_exception/exception_cs.cpp
index fbc7cf8f491..0e2a4b563d3 100644
--- a/TAO/TAO_IDL/be/be_visitor_exception/exception_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_exception/exception_cs.cpp
@@ -329,13 +329,6 @@ int be_visitor_exception_cs::visit_exception (be_exception *node)
*os << "CORBA::TypeCode_ptr " << node->name ()
<< "::_type (void) const" << be_nl;
*os << "{" << be_idt_nl;
- *os << "ACE_DEBUG ((LM_DEBUG," << be_nl
- << " ACE_LIB_TEXT (\"This TAO-specific method is now\")"
- << be_nl
- << " ACE_LIB_TEXT (\" deprecated and will be removed\")"
- << be_nl
- << " ACE_LIB_TEXT (\" in future versions.\\n\")));"
- << be_nl << be_nl;
*os << "return ::" << node->tc_name () << ";" << be_uidt_nl;
*os << "}";
}
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp
index 60f724a2885..2cb030494eb 100644
--- a/TAO/tao/Exception.cpp
+++ b/TAO/tao/Exception.cpp
@@ -147,14 +147,6 @@ CORBA::Exception::_name (void) const
CORBA::TypeCode_ptr
CORBA::Exception::_type (void) const
{
- if (TAO_debug_level > 0)
- {
- ACE_DEBUG ((LM_DEBUG,
- ACE_LIB_TEXT ("This TAO-specific method (Exception::_type())")
- ACE_LIB_TEXT (" is now deprecated and will be removed")
- ACE_LIB_TEXT (" in future versions.\n")));
- }
-
return CORBA::TypeCode::_nil ();
}