(int position, CharSequence lastSeen)
| 122 | } |
| 123 | |
| 124 | public void backTo(int position, CharSequence lastSeen) { |
| 125 | if (position < 0 || position > _len) { |
| 126 | throw new IndexOutOfBoundsException(); |
| 127 | } |
| 128 | _pos = position; |
| 129 | last = lastSeen; |
| 130 | next = null; |
| 131 | } |
| 132 | |
| 133 | @Override |
| 134 | public void clear() { |
no outgoing calls
no test coverage detected