summaryrefslogtreecommitdiff
path: root/TAO/tao/operation_details.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/operation_details.cpp')
-rw-r--r--TAO/tao/operation_details.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tao/operation_details.cpp b/TAO/tao/operation_details.cpp
index 383fb11b695..0fd3bf00610 100644
--- a/TAO/tao/operation_details.cpp
+++ b/TAO/tao/operation_details.cpp
@@ -26,15 +26,13 @@ TAO_Operation_Details::corba_exception (const char *id)
{
for (CORBA::ULong i = 0; i != this->ex_count_; ++i)
{
- if (ACE_OS::strcmp (id,
- this->ex_data_[i].id) != 0)
+ if (ACE_OS::strcmp (id, this->ex_data_[i].id) != 0)
{
continue;
}
// Create an exception object
- CORBA::Exception *exception =
- this->ex_data_[i].alloc ();
+ CORBA::Exception *exception = this->ex_data_[i].alloc ();
if (exception == 0)
{