summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Instance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Instance.cpp')
-rw-r--r--cpp/src/Ice/Instance.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/cpp/src/Ice/Instance.cpp b/cpp/src/Ice/Instance.cpp
index 7bb3fb1cdc6..24540c65491 100644
--- a/cpp/src/Ice/Instance.cpp
+++ b/cpp/src/Ice/Instance.cpp
@@ -374,28 +374,6 @@ IceInternal::Instance::serverACM() const
return _serverACM;
}
-void
-IceInternal::Instance::flushBatchRequests()
-{
- OutgoingConnectionFactoryPtr connectionFactory;
- ObjectAdapterFactoryPtr adapterFactory;
-
- {
- IceUtil::RecMutex::Lock sync(*this);
-
- if(_state == StateDestroyed)
- {
- throw CommunicatorDestroyedException(__FILE__, __LINE__);
- }
-
- connectionFactory = _outgoingConnectionFactory;
- adapterFactory = _objectAdapterFactory;
- }
-
- connectionFactory->flushBatchRequests();
- adapterFactory->flushBatchRequests();
-}
-
Identity
IceInternal::Instance::stringToIdentity(const string& s) const
{