Removed incorrect boolean assignment

This commit is contained in:
Trustin Lee 2009-09-30 06:49:00 +00:00
parent 5e4ca0d94a
commit 346d7022cd

View File

@ -542,7 +542,6 @@ class NioDatagramWorker implements Runnable {
channel.currentWriteEvent = evt; channel.currentWriteEvent = evt;
} catch (final Throwable t) { } catch (final Throwable t) {
channel.currentWriteEvent = null; channel.currentWriteEvent = null;
channel.inWriteNowLoop = false;
evt.getFuture().setFailure(t); evt.getFuture().setFailure(t);
evt = null; evt = null;
fireExceptionCaught(channel, t); fireExceptionCaught(channel, t);