(InputStream is)
| 61 | public static final Codec NONE = new Identity(); |
| 62 | |
| 63 | @Override |
| 64 | public InputStream decompress(InputStream is) { |
| 65 | return is; |
| 66 | } |
| 67 | |
| 68 | @Override |
| 69 | public String getMessageEncoding() { |
nothing calls this directly
no outgoing calls
no test coverage detected