()
| 136 | } |
| 137 | |
| 138 | public LinkedList.Node<T> next() { |
| 139 | LinkedList.Node<T> node = this.node; |
| 140 | |
| 141 | if (this.node != null) { |
| 142 | this.node = this.node.next; |
| 143 | } |
| 144 | |
| 145 | return node; |
| 146 | } |
| 147 | |
| 148 | public void remove() { |
| 149 | throw new UnsupportedOperationException("remove"); |
no outgoing calls
no test coverage detected