()
| 164 | } |
| 165 | |
| 166 | @Override |
| 167 | public Tuple getNext() throws IOException { |
| 168 | if (count < COUNT) { |
| 169 | |
| 170 | Tuple t = new DefaultTuple(); |
| 171 | t.append(Integer.toString(count++)); |
| 172 | return t; |
| 173 | |
| 174 | } |
| 175 | |
| 176 | return null; |
| 177 | } |
| 178 | |
| 179 | } |
| 180 |
no test coverage detected