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