Remove redundant field initialization

This commit is contained in:
Trustin Lee 2012-11-10 06:56:39 +09:00
parent b9fbed49bd
commit 5c57dd9f0d

View File

@ -129,7 +129,7 @@ public class LocalTransportThreadModelTest2 {
class LocalHander extends ChannelInboundMessageHandlerAdapter<Object> {
private final String name;
public volatile ChannelFuture lastWriteFuture = null;
public volatile ChannelFuture lastWriteFuture;
public AtomicInteger count = new AtomicInteger(0);
@ -150,4 +150,4 @@ public class LocalTransportThreadModelTest2 {
count.incrementAndGet();
}
}
}
}