Remove redundant field initialization
This commit is contained in:
parent
b9fbed49bd
commit
5c57dd9f0d
@ -129,7 +129,7 @@ public class LocalTransportThreadModelTest2 {
|
|||||||
class LocalHander extends ChannelInboundMessageHandlerAdapter<Object> {
|
class LocalHander extends ChannelInboundMessageHandlerAdapter<Object> {
|
||||||
private final String name;
|
private final String name;
|
||||||
|
|
||||||
public volatile ChannelFuture lastWriteFuture = null;
|
public volatile ChannelFuture lastWriteFuture;
|
||||||
|
|
||||||
public AtomicInteger count = new AtomicInteger(0);
|
public AtomicInteger count = new AtomicInteger(0);
|
||||||
|
|
||||||
@ -150,4 +150,4 @@ public class LocalTransportThreadModelTest2 {
|
|||||||
count.incrementAndGet();
|
count.incrementAndGet();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user