(byte[] arr, byte value)
| 156 | } |
| 157 | |
| 158 | private static void fillByte(byte[] arr, byte value) { |
| 159 | for (int i = 0; i < arr.length; i++) { |
| 160 | arr[i] = value; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | private static void fillInt(int[] arr, int value) { |
| 165 | for (int i = 0; i < arr.length; i++) { |
no outgoing calls
no test coverage detected