Closes the current reader and opens the next one, if any.
()
| 45 | */ |
| 46 | |
| 47 | private void advance() throws IOException { |
| 48 | close(); |
| 49 | if (it.hasNext()) { |
| 50 | current = it.next().openStream(); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | @Override |
| 55 | public int read(@Nullable char cbuf[], int off, int len) throws IOException { |
no test coverage detected