diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-12-20 16:01:07 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-12-20 16:01:07 +0100 |
commit | bb7cc27f54b3876ed4d20bcd7b635d8039b28f38 (patch) | |
tree | d10b913fe53470c6f57766cac4e3e4f0c6fd1401 | |
parent | Minor simplifications of C++ test controllers (diff) | |
download | ice-bb7cc27f54b3876ed4d20bcd7b635d8039b28f38.tar.bz2 ice-bb7cc27f54b3876ed4d20bcd7b635d8039b28f38.tar.xz ice-bb7cc27f54b3876ed4d20bcd7b635d8039b28f38.zip |
Fixed minor wording typo
-rw-r--r-- | cpp/test/ios/controller/Bundle/ControllerI.mm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/test/ios/controller/Bundle/ControllerI.mm b/cpp/test/ios/controller/Bundle/ControllerI.mm index 64eb6bbe4f5..8bcbbb84697 100644 --- a/cpp/test/ios/controller/Bundle/ControllerI.mm +++ b/cpp/test/ios/controller/Bundle/ControllerI.mm @@ -134,13 +134,10 @@ ControllerHelperI::serverReady() } void -ControllerHelperI::communicatorInitialized(const Ice::CommunicatorPtr& communnicator) +ControllerHelperI::communicatorInitialized(const Ice::CommunicatorPtr& communicator) { Lock sync(*this); - if(!_completed) - { - _communicator = communnicator; - } + _communicator = communicator; } string |