(ByteBuffer buf, byte[] arr)
| 2363 | |
| 2364 | |
| 2365 | protected static void putByteArray(ByteBuffer buf, byte[] arr) { |
| 2366 | if (!buf.hasArray() || buf.array() != arr) { |
| 2367 | buf.position(0); |
| 2368 | buf.put(arr); |
| 2369 | buf.rewind(); |
| 2370 | } |
| 2371 | } |
| 2372 | |
| 2373 | |
| 2374 | protected static void fillByteBuffer(ByteBuffer buf, int i0, int i1, |