(byte[] input_data)
| 593 | } |
| 594 | |
| 595 | private static byte[] br_decompress(byte[] input_data) throws Exception { |
| 596 | ByteArrayInputStream in = new ByteArrayInputStream(input_data); |
| 597 | BrotliCompressorInputStream brIn = new BrotliCompressorInputStream(in); |
| 598 | return IOUtils.toByteArray(brIn); |
| 599 | } |
| 600 | |
| 601 | private static byte[] gunzip(byte[] input_data) throws Exception { |
| 602 | if (input_data.length == 0) { |
no test coverage detected