diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-11-30 16:28:07 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-11-30 16:28:07 +0100 |
commit | 7095fda336eee32fb65895a21d756f59f1c15bb6 (patch) | |
tree | 5b4f43c6eaac49e15ad5fdd50aeab0ef171df928 /cpp/test/Ice/acm/Client.cpp | |
parent | Removed Java controller, fixes to investiage IceGrid/replication test failure (diff) | |
download | ice-7095fda336eee32fb65895a21d756f59f1c15bb6.tar.bz2 ice-7095fda336eee32fb65895a21d756f59f1c15bb6.tar.xz ice-7095fda336eee32fb65895a21d756f59f1c15bb6.zip |
Removed RemoteConfig to fix build failure
Diffstat (limited to 'cpp/test/Ice/acm/Client.cpp')
-rw-r--r-- | cpp/test/Ice/acm/Client.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/test/Ice/acm/Client.cpp b/cpp/test/Ice/acm/Client.cpp index 50ff5687f93..4a0ad4acf99 100644 --- a/cpp/test/Ice/acm/Client.cpp +++ b/cpp/test/Ice/acm/Client.cpp @@ -1,7 +1,6 @@ // ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. -// // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // @@ -39,10 +38,7 @@ main(int argc, char* argv[]) initData.properties->setProperty("Ice.Warn.Connections", "0"); Ice::CommunicatorHolder ich = Ice::initialize(argc, argv, initData); - RemoteConfig rc("Ice/acm", argc, argv, ich.communicator()); - int status = run(argc, argv, ich.communicator()); - rc.finished(status); - return status; + return run(argc, argv, ich.communicator()); } catch(const Ice::Exception& ex) { |