diff options
author | Michi Henning <michi@zeroc.com> | 2002-12-05 15:21:54 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-12-05 15:21:54 +0000 |
commit | 5b39a34fefc1745cba31cbef72389c0ca4c6b992 (patch) | |
tree | 44e05b51fc18dd8d9cace0efaa4754a725b61e24 /cpp/src/IcePack/ServerI.cpp | |
parent | Fixed incorrect _kindOfObject assignments. (diff) | |
download | ice-5b39a34fefc1745cba31cbef72389c0ca4c6b992.tar.bz2 ice-5b39a34fefc1745cba31cbef72389c0ca4c6b992.tar.xz ice-5b39a34fefc1745cba31cbef72389c0ca4c6b992.zip |
Style fixes only.
Diffstat (limited to 'cpp/src/IcePack/ServerI.cpp')
-rw-r--r-- | cpp/src/IcePack/ServerI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IcePack/ServerI.cpp b/cpp/src/IcePack/ServerI.cpp index 81bb4f649f3..97bc805ee7b 100644 --- a/cpp/src/IcePack/ServerI.cpp +++ b/cpp/src/IcePack/ServerI.cpp @@ -98,7 +98,7 @@ IcePack::ServerI::start(ServerActivation act, const Ice::Current& current) setState(active ? Active : Inactive); return active; } - catch (const Ice::SyscallException& ex) + catch(const Ice::SyscallException& ex) { Ice::Warning out(_traceLevels->logger); out << "activation failed for server `" << description.name << "':\n"; @@ -389,7 +389,7 @@ IcePack::ServerI::stopInternal() { _activator->deactivate(this); } - catch (const Ice::SyscallException& ex) + catch(const Ice::SyscallException& ex) { Ice::Warning out(_traceLevels->logger); out << "deactivation failed for server `" << description.name << "':\n"; @@ -448,7 +448,7 @@ IcePack::ServerI::stopInternal() { _activator->kill(this); } - catch (const Ice::SyscallException& ex) + catch(const Ice::SyscallException& ex) { Ice::Warning out(_traceLevels->logger); out << "deactivation failed for server `" << description.name << "':\n"; |