(byte[] dst, int target, byte[] src, int start, int end)
| 65 | } |
| 66 | |
| 67 | static void copyBytes(byte[] dst, int target, byte[] src, int start, int end) { |
| 68 | System.arraycopy(src, start, dst, target, end - start); |
| 69 | } |
| 70 | |
| 71 | static void copyBytesWithin(byte[] bytes, int target, int start, int end) { |
| 72 | System.arraycopy(bytes, start, bytes, target, end - start); |
no outgoing calls
no test coverage detected