(int index, int value)
| 138 | } |
| 139 | |
| 140 | public void incr (int index, int value) { |
| 141 | if (index >= size) throw new IndexOutOfBoundsException("index can't be >= size: " + index + " >= " + size); |
| 142 | items[index] += value; |
| 143 | } |
| 144 | |
| 145 | public void incr (int value) { |
| 146 | int[] items = this.items; |
no outgoing calls
no test coverage detected