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