Returns a new ByteArrayDataInput instance to read from the bytes array from the beginning.
(byte[] bytes)
| 250 | |
| 251 | |
| 252 | public static ByteArrayDataInput newDataInput(byte[] bytes) { |
| 253 | return newDataInput(new ByteArrayInputStream(bytes)); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Returns a new {@link ByteArrayDataInput} instance to read from the {@code bytes} array, |
no test coverage detected