()
| 132 | LinkedList.Node<T> node = LinkedList.this.getFirst(); |
| 133 | |
| 134 | public boolean hasNext() { |
| 135 | return this.node != null; |
| 136 | } |
| 137 | |
| 138 | public LinkedList.Node<T> next() { |
| 139 | LinkedList.Node<T> node = this.node; |
no outgoing calls
no test coverage detected