()
| 218 | } |
| 219 | |
| 220 | @Override |
| 221 | public E next() { |
| 222 | if (remaining <= 0) { |
| 223 | Entry<E> entry = entryIterator.next(); |
| 224 | element = entry.getElement(); |
| 225 | remaining = entry.getCount(); |
| 226 | } |
| 227 | remaining--; |
| 228 | return element; |
| 229 | } |
| 230 | }; |
| 231 | } |
| 232 |
nothing calls this directly
no test coverage detected