From 8b2ed77042b5a3023974d7a6d2f22fc0d3edef34 Mon Sep 17 00:00:00 2001 From: Aayush Atharva Date: Mon, 16 Nov 2020 13:33:37 +0530 Subject: [PATCH] Fix comment typo DelegatingDecompressorFrameListener (#10789) Motivation: `DelegatingDecompressorFrameListener#initDecompressor` has multiple dots `.` in comments. However, it should not have that. Modification: Removed multiple dots. Result: Clean comment --- .../codec/http2/DelegatingDecompressorFrameListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/DelegatingDecompressorFrameListener.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/DelegatingDecompressorFrameListener.java index 7169a33c19..278b3afa02 100644 --- a/codec-http2/src/main/java/io/netty/handler/codec/http2/DelegatingDecompressorFrameListener.java +++ b/codec-http2/src/main/java/io/netty/handler/codec/http2/DelegatingDecompressorFrameListener.java @@ -234,7 +234,7 @@ public class DelegatingDecompressorFrameListener extends Http2FrameListenerDecor if (decompressor != null) { // The content length will be for the compressed data. Since we will decompress the data // this content-length will not be correct. Instead of queuing messages or delaying sending - // header frames...just remove the content-length header + // header frames just remove the content-length header. headers.remove(CONTENT_LENGTH); // The first time that we initialize a decompressor, decorate the local flow controller to