Remove volatile on two fields that don't need it
This commit is contained in:
parent
dcd2a10f95
commit
94b10d2d02
@ -67,9 +67,9 @@ public class HttpUploadServerHandler extends SimpleChannelUpstreamHandler {
|
||||
private static final InternalLogger logger =
|
||||
InternalLoggerFactory.getInstance(HttpUploadServerHandler.class);
|
||||
|
||||
private volatile HttpRequest request;
|
||||
private HttpRequest request;
|
||||
|
||||
private volatile boolean readingChunks;
|
||||
private boolean readingChunks;
|
||||
|
||||
private final StringBuilder responseContent = new StringBuilder();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user