(int[] array, int value)
| 498 | } |
| 499 | |
| 500 | public static void fill(int[] array, int value) { |
| 501 | for (int i=0;i<array.length;i++) { |
| 502 | array[i] = value; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | public static void fill(int[] array, int start, int stop, int value) { |
| 507 | checkRange(array.length, start, stop); |
nothing calls this directly
no test coverage detected