diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-02-13 00:03:05 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-02-13 00:03:05 +0000 |
commit | b15e00bc852e88eaf0c18462a49893802f3ea28a (patch) | |
tree | 1f7876e2c5567ef659d069edeb638035e613b48d /TAO/tao | |
parent | 2c6a3e6496e6ded9d716e7916d3212d4b7f61029 (diff) | |
download | ATCD-b15e00bc852e88eaf0c18462a49893802f3ea28a.tar.gz |
ChangeLogTag:Tue Feb 12 16:01:25 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/PICurrent.cpp | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/TAO/tao/PICurrent.cpp b/TAO/tao/PICurrent.cpp index 415fbae3e38..b425c4b1146 100644 --- a/TAO/tao/PICurrent.cpp +++ b/TAO/tao/PICurrent.cpp @@ -219,21 +219,8 @@ TAO_PICurrent_Impl::copy (TAO_PICurrent_Impl &rhs, CORBA::Boolean deep_copy) this->slot_table_.size (new_size); - ACE_DECLARE_NEW_CORBA_ENV; - ACE_TRY - { - for (size_t i = 0; i < new_size; ++i) - this->slot_table_[i] = t[i]; // Deep copy - } - ACE_CATCHANY - { - if (TAO_debug_level > 0) - ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, - "(%P|%t) Error during PICurrent " - "slot table copy."); - } - ACE_ENDTRY; - ACE_CHECK; + for (size_t i = 0; i < new_size; ++i) + this->slot_table_[i] = t[i]; // Deep copy rhs.dirty (0); |