This commit is contained in:
Trustin Lee 2013-04-24 18:57:14 +09:00
parent 7c5dc363fb
commit 6282b31bc0

View File

@ -557,8 +557,7 @@ final class DefaultChannelPipeline implements ChannelPipeline {
handler.handlerRemoved(ctx); handler.handlerRemoved(ctx);
} catch (Throwable t) { } catch (Throwable t) {
fireExceptionCaught(new ChannelPipelineException( fireExceptionCaught(new ChannelPipelineException(
ctx.handler().getClass().getName() + ctx.handler().getClass().getName() + ".handlerRemoved() has thrown an exception.", t));
".handlerRemoved() has thrown an exception.", t));
} }
} }
@ -585,7 +584,6 @@ final class DefaultChannelPipeline implements ChannelPipeline {
PlatformDependent.throwException(ex.getCause()); PlatformDependent.throwException(ex.getCause());
} catch (InterruptedException ex) { } catch (InterruptedException ex) {
// Interrupt the calling thread (note that this method is not called from the event loop) // Interrupt the calling thread (note that this method is not called from the event loop)
Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
} }
} }