summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-01-26 18:46:22 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-01-26 18:46:22 +0000
commit528ecd6bd138576bc2363d4425a0c2563f958924 (patch)
tree68cf0b1f3a59f73ee0c23236fdc8f025a6e6dc91
parent9d3d9ad8a7fa7011f61492c6903ee7feb7e61d35 (diff)
downloadATCD-528ecd6bd138576bc2363d4425a0c2563f958924.tar.gz
ChangeLogTag: Fri Jan 26 18:45:53 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/tao/PortableServer/ServantRetentionStrategyRetain.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index dab3216469e..d0b0cbe6be2 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jan 26 18:45:53 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * tao/PortableServer/ServantRetentionStrategyRetain.cpp:
+
+ Removed the extra parenthesis around a throw argument.
+
Fri Jan 26 18:21:17 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* *.cpp:
diff --git a/TAO/tao/PortableServer/ServantRetentionStrategyRetain.cpp b/TAO/tao/PortableServer/ServantRetentionStrategyRetain.cpp
index cbf53cb1928..fce866f9a08 100644
--- a/TAO/tao/PortableServer/ServantRetentionStrategyRetain.cpp
+++ b/TAO/tao/PortableServer/ServantRetentionStrategyRetain.cpp
@@ -866,7 +866,7 @@ namespace TAO
// in the Active Object Map, the ServantAlreadyActive exception is raised.
if (result)
{
- throw (PortableServer::POA::ObjectAlreadyActive ());
+ throw PortableServer::POA::ObjectAlreadyActive ();
}
else if (wait_occurred_restart_call)
{