diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier2Lib/Application.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/Glacier2Lib/Application.cpp b/cpp/src/Glacier2Lib/Application.cpp index 92b09e62098..80b6b6ff1e3 100644 --- a/cpp/src/Glacier2Lib/Application.cpp +++ b/cpp/src/Glacier2Lib/Application.cpp @@ -143,10 +143,7 @@ Glacier2::Application::objectAdapter() IceUtil::Mutex::Lock lock(*IceInternal::Application::mutex); if(!_adapter) { - // TODO: Depending on the resolution of - // http://bugzilla/bugzilla/show_bug.cgi?id=4264 the OA - // name could be an empty string. - _adapter = communicator()->createObjectAdapterWithRouter(IceUtil::generateUUID(), router()); + _adapter = communicator()->createObjectAdapterWithRouter("", router()); _adapter->activate(); } return _adapter; |