core: Remove internal comment referencing compression frames

Compression frames existed in a very early iteration of the gRPC
protocol. It was killed long ago.
This commit is contained in:
Eric Anderson 2017-03-29 13:12:00 -07:00
parent 075b5ecddd
commit 0bcf921e20
1 changed files with 1 additions and 2 deletions

View File

@ -353,8 +353,7 @@ public class MessageDeframer implements Closeable {
} }
/** /**
* Processes the body of the GRPC compression frame. A single compression frame may contain * Processes the GRPC message body, which depending on frame header flags may be compressed.
* several GRPC messages within it.
*/ */
private void processBody() { private void processBody() {
InputStream stream = compressedFlag ? getCompressedBody() : getUncompressedBody(); InputStream stream = compressedFlag ? getCompressedBody() : getUncompressedBody();