(int i)
| 22 | } |
| 23 | |
| 24 | public T get(int i) { |
| 25 | if (i < 0 || i >= items.length) { |
| 26 | throw new java.lang.IndexOutOfBoundsException("Index " + i + " is out of bounds"); |
| 27 | } |
| 28 | return items[convert(i)]; |
| 29 | } |
| 30 | |
| 31 | public void set(int i, T item) { |
| 32 | items[convert(i)] = item; |
no test coverage detected