(byte[] bytes, int offset, int length)
| 8 | public interface StringDecoder { |
| 9 | |
| 10 | String decode(byte[] bytes, int offset, int length); |
| 11 | |
| 12 | static StringDecoder create(String name) { |
| 13 | Charset cs = Charset.forName(name); |
no outgoing calls
no test coverage detected