summaryrefslogtreecommitdiff
path: root/TAO/tao/IORInterceptor/IORInterceptor_List.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/IORInterceptor/IORInterceptor_List.cpp')
-rw-r--r--TAO/tao/IORInterceptor/IORInterceptor_List.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/tao/IORInterceptor/IORInterceptor_List.cpp b/TAO/tao/IORInterceptor/IORInterceptor_List.cpp
index debefc5ac8b..d31f6348adc 100644
--- a/TAO/tao/IORInterceptor/IORInterceptor_List.cpp
+++ b/TAO/tao/IORInterceptor/IORInterceptor_List.cpp
@@ -52,41 +52,6 @@ TAO_IORInterceptor_List::add_interceptor (
PortableInterceptor::IORInterceptor::_duplicate (interceptor);
}
-void
-TAO_IORInterceptor_List::adapter_state_changed (
- const TAO::ORT_Array &array_obj_ref_template,
- PortableInterceptor::AdapterState state
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- const size_t interceptor_count = this->interceptors_.size ();
-
- if (interceptor_count == 0)
- return;
-
- PortableInterceptor::ObjectReferenceTemplateSeq seq_obj_ref_template;
-
- seq_obj_ref_template.length (array_obj_ref_template.size());
-
- for (size_t counter = 0; counter < array_obj_ref_template.size(); ++counter)
- {
- PortableInterceptor::ObjectReferenceTemplate *member =
- array_obj_ref_template[counter];
-
- CORBA::add_ref (member);
-
- seq_obj_ref_template[counter] = member;
- }
-
- for (size_t i = 0; i < interceptor_count; ++i)
- {
- this->interceptors_[i]->adapter_state_changed (seq_obj_ref_template,
- state
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
- }
-
-}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)