(int count)
| 344 | } |
| 345 | |
| 346 | void copy(int count) { |
| 347 | for (int i = 0; i < count; ++i) { |
| 348 | gen[genPos++] = orig[origPos++]; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | byte[] readBytes(int count) { |
| 353 | byte[] bytes = new byte[count]; |
no outgoing calls
no test coverage detected