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/ThreadPool.cpp | |
parent | comments (diff) | |
download | ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2 ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz ice-364c465628189a4f3dee6eac54ff48825c48e681.zip |
removed spaces
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r-- | cpp/src/Ice/ThreadPool.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp index dbcc65a2e6a..467bd0662ff 100644 --- a/cpp/src/Ice/ThreadPool.cpp +++ b/cpp/src/Ice/ThreadPool.cpp @@ -143,7 +143,7 @@ IceInternal::ThreadPool::ThreadPool(const InstancePtr& instance, bool server) : _threads.push_back(thread->start()); } } - catch (const IceUtil::Exception& ex) + catch(const IceUtil::Exception& ex) { { Error out(_instance->logger()); @@ -498,11 +498,11 @@ IceInternal::ThreadPool::run() { read(handler); } - catch (const TimeoutException&) // Expected. + catch(const TimeoutException&) // Expected. { goto repeatSelect; } - catch (const LocalException& ex) + catch(const LocalException& ex) { handler->exception(ex); goto repeatSelect; @@ -586,7 +586,7 @@ IceInternal::ThreadPool::EventHandlerThread::run() { _pool->run(); } - catch (const Exception& ex) + catch(const Exception& ex) { Error out(_pool->_instance->logger()); out << "exception in thread pool:\n" << ex; |