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
|
* 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();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue