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
This commit is contained in:
Aayush Atharva 2020-11-16 13:33:37 +05:30 committed by GitHub
parent c717d4b97a
commit 8b2ed77042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -234,7 +234,7 @@ public class DelegatingDecompressorFrameListener extends Http2FrameListenerDecor
if (decompressor != null) { if (decompressor != null) {
// The content length will be for the compressed data. Since we will decompress the data // 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 // 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); headers.remove(CONTENT_LENGTH);
// The first time that we initialize a decompressor, decorate the local flow controller to // The first time that we initialize a decompressor, decorate the local flow controller to