()
| 1234 | } |
| 1235 | |
| 1236 | public T next() |
| 1237 | { |
| 1238 | if (position == dataArray.length) |
| 1239 | { |
| 1240 | throw new NoSuchElementException("Out of elements: " + position); |
| 1241 | } |
| 1242 | |
| 1243 | return dataArray[position++]; |
| 1244 | } |
| 1245 | |
| 1246 | public void remove() |
| 1247 | { |
no outgoing calls
no test coverage detected