()
| 43 | /* Do not allow entry readers to close the whole ZipInputStream. */ |
| 44 | FilterInputStream entryStream = new FilterInputStream(input) { |
| 45 | @Override |
| 46 | public void close() {} |
| 47 | }; |
| 48 | |
| 49 | InputStream decompressedStream = newBrotliInputStream(entryStream); |
no outgoing calls
no test coverage detected