(r io.Reader)
| 128 | } |
| 129 | |
| 130 | func (d *gzipDecompressor) Do(r io.Reader) ([]byte, error) { |
| 131 | return d.doWithMaxSize(r, math.MaxInt64) |
| 132 | } |
| 133 | |
| 134 | // doWithMaxSize behaves like Do but caps the size of the decompressed |
| 135 | // payload at maxMessageSize+1 bytes. The Decompressor interface does not |
nothing calls this directly
no test coverage detected