(int position)
| 824 | |
| 825 | |
| 826 | static void checkNonnegative(int position) { |
| 827 | if (position < 0) { |
| 828 | throw new IndexOutOfBoundsException("position (" + position + ") must not be negative"); |
| 829 | } |
| 830 | } |
| 831 | |
| 832 | /** |
| 833 | * Advances {@code iterator} {@code position + 1} times, returning the |
no outgoing calls
no test coverage detected