@param length The length in BYTES
(byte[] data, int offset, int length)
| 329 | * @param length The length in BYTES |
| 330 | */ |
| 331 | public static String getUTF8(byte[] data, int offset, int length) { |
| 332 | return new String(data, offset, length, UTF8); |
| 333 | } |
| 334 | /** |
| 335 | * Strips off any null padding, if any, from the string |
| 336 | */ |
no outgoing calls
no test coverage detected