diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-25 18:03:20 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-25 18:03:20 +0000 |
commit | 364c465628189a4f3dee6eac54ff48825c48e681 (patch) | |
tree | a7d51101d0fdfef43601b48965c2935059e617b6 /cpp/src/Ice/Connection.cpp | |
parent | comments (diff) | |
download | ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2 ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz ice-364c465628189a4f3dee6eac54ff48825c48e681.zip |
removed spaces
Diffstat (limited to 'cpp/src/Ice/Connection.cpp')
-rw-r--r-- | cpp/src/Ice/Connection.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/src/Ice/Connection.cpp b/cpp/src/Ice/Connection.cpp index 60efc551c80..8fe9ea0036b 100644 --- a/cpp/src/Ice/Connection.cpp +++ b/cpp/src/Ice/Connection.cpp @@ -168,7 +168,7 @@ IceInternal::Connection::sendRequest(Outgoing* out, bool oneway, bool comp) _transceiver->write(*os, _endpoint->timeout()); } } - catch (const LocalException& ex) + catch(const LocalException& ex) { setState(StateClosed, ex); ex.ice_throw(); @@ -315,7 +315,7 @@ IceInternal::Connection::flushBatchRequest(bool comp) _batchStream.swap(dummy); assert(_batchStream.b.empty()); } - catch (const LocalException& ex) + catch(const LocalException& ex) { setState(StateClosed, ex); ex.ice_throw(); @@ -575,7 +575,7 @@ IceInternal::Connection::message(BasicStream& stream, const ThreadPoolPtr& threa } } } - catch (const LocalException& ex) + catch(const LocalException& ex) { setState(StateClosed, ex); return; @@ -619,7 +619,7 @@ IceInternal::Connection::message(BasicStream& stream, const ThreadPoolPtr& threa { in.invoke(response); } - catch (const LocalException& ex) + catch(const LocalException& ex) { IceUtil::RecMutex::Lock sync(*this); if(_warn) @@ -628,7 +628,7 @@ IceInternal::Connection::message(BasicStream& stream, const ThreadPoolPtr& threa out << "connection exception:\n" << ex << '\n' << _transceiver->toString(); } } - catch (const UserException& ex) + catch(const UserException& ex) { IceUtil::RecMutex::Lock sync(*this); if(_warn) @@ -649,7 +649,7 @@ IceInternal::Connection::message(BasicStream& stream, const ThreadPoolPtr& threa } while(batch && is->i < is->b.end()); } - catch (const LocalException& ex) + catch(const LocalException& ex) { IceUtil::RecMutex::Lock sync(*this); setState(StateClosed, ex); @@ -726,7 +726,7 @@ IceInternal::Connection::message(BasicStream& stream, const ThreadPoolPtr& threa closeConnection(); } } - catch (const LocalException& ex) + catch(const LocalException& ex) { setState(StateClosed, ex); return; @@ -951,7 +951,7 @@ IceInternal::Connection::setState(State state) { closeConnection(); } - catch (const LocalException& ex) + catch(const LocalException& ex) { setState(StateClosed, ex); } |