(byte[] bytes)
| 396 | } |
| 397 | |
| 398 | private static ByteBuffer wrapBytes(byte[] bytes) { |
| 399 | ByteBuffer bb = ByteBuffer.wrap(bytes); |
| 400 | bb.order(ByteOrder.LITTLE_ENDIAN); |
| 401 | return bb; |
| 402 | } |
| 403 | |
| 404 | private static ByteBuffer wrapBytes(byte[] bytes, int offset, int length) { |
| 405 | ByteBuffer bb = ByteBuffer.wrap(bytes, offset, length); |
no outgoing calls
no test coverage detected