Fix inspector warnings
This commit is contained in:
parent
2df690b0e4
commit
437a9403b0
@ -41,9 +41,9 @@ import io.netty.handler.stream.ChunkedInput;
|
|||||||
*/
|
*/
|
||||||
public class HttpChunkedInput implements ChunkedInput<HttpContent> {
|
public class HttpChunkedInput implements ChunkedInput<HttpContent> {
|
||||||
|
|
||||||
private ChunkedInput<ByteBuf> input;
|
private final ChunkedInput<ByteBuf> input;
|
||||||
|
private final LastHttpContent lastHttpContent;
|
||||||
private boolean sentLastChunk;
|
private boolean sentLastChunk;
|
||||||
private LastHttpContent lastHttpContent;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new instance using the specified input.
|
* Creates a new instance using the specified input.
|
||||||
@ -51,7 +51,7 @@ public class HttpChunkedInput implements ChunkedInput<HttpContent> {
|
|||||||
*/
|
*/
|
||||||
public HttpChunkedInput(ChunkedInput<ByteBuf> input) {
|
public HttpChunkedInput(ChunkedInput<ByteBuf> input) {
|
||||||
this.input = input;
|
this.input = input;
|
||||||
this.lastHttpContent = LastHttpContent.EMPTY_LAST_CONTENT;
|
lastHttpContent = LastHttpContent.EMPTY_LAST_CONTENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user