(int index)
| 63 | // The fake cast to E is safe because the creation methods only allow E's |
| 64 | |
| 65 | @Override |
| 66 | @SuppressWarnings("unchecked") |
| 67 | public E get(int index) { |
| 68 | Preconditions.checkElementIndex(index, size); |
| 69 | return (E) array[index + offset]; |
| 70 | } |
| 71 | |
| 72 | @Override |
| 73 | ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) { |
nothing calls this directly
no test coverage detected