diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-18 20:40:01 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-18 20:40:01 +0000 |
commit | f378ea0b65a07da95798d3e1a4e988f3a82b36a7 (patch) | |
tree | dbcf7e651e1b4f179570def7767ed22e7906913d /TAO | |
parent | bf3a892248300f52338e88148ff37b83280c63f8 (diff) | |
download | ATCD-f378ea0b65a07da95798d3e1a4e988f3a82b36a7.tar.gz |
Removed generation of ACE_ERROR messsage in _dispatch() method.
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/TAO_IDL/be/be_visitor_interface/interface_ss.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_interface/interface_ss.cpp b/TAO/TAO_IDL/be/be_visitor_interface/interface_ss.cpp index 2b0cefcb380..651e76c69c3 100644 --- a/TAO/TAO_IDL/be/be_visitor_interface/interface_ss.cpp +++ b/TAO/TAO_IDL/be/be_visitor_interface/interface_ss.cpp @@ -339,12 +339,10 @@ be_visitor_interface_ss::visit_interface (be_interface *node) *os << "const char *opname = req.operation (); // retrieve operation name" << be_nl; *os << "// find the skeleton corresponding to this opname" << be_nl; - *os << "if (this->_find (opname, skel, req.operation_length ()) == -1)" << be_nl; - *os << "{" << be_idt_nl; - *os << "ACE_ERROR ((LM_ERROR, \"Bad operation <%s>\\n\", opname));" << be_nl; + *os << "if (this->_find (opname, skel, req.operation_length ()) == -1)" + << be_idt_nl; *os << "ACE_THROW (CORBA_BAD_OPERATION ());" << be_uidt_nl; - *os << "}" << be_nl; *os << "else" << be_idt_nl; *os << "skel (req, this, context, ACE_TRY_ENV);" << be_uidt << be_uidt_nl; *os << "}" << be_nl << be_nl; |