(OutputStream os)
| 39 | } |
| 40 | |
| 41 | @Override |
| 42 | public OutputStream compress(OutputStream os) throws IOException { |
| 43 | return new GZIPOutputStream(os); |
| 44 | } |
| 45 | |
| 46 | @Override |
| 47 | public InputStream decompress(InputStream is) throws IOException { |
nothing calls this directly
no outgoing calls
no test coverage detected