mirror of https://github.com/grpc/grpc-java.git
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:
parent
075b5ecddd
commit
0bcf921e20
|
|
@ -353,8 +353,7 @@ public class MessageDeframer implements Closeable {
|
|||
}
|
||||
|
||||
/**
|
||||
* Processes the body of the GRPC compression frame. A single compression frame may contain
|
||||
* several GRPC messages within it.
|
||||
* Processes the GRPC message body, which depending on frame header flags may be compressed.
|
||||
*/
|
||||
private void processBody() {
|
||||
InputStream stream = compressedFlag ? getCompressedBody() : getUncompressedBody();
|
||||
|
|
|
|||
Loading…
Reference in New Issue