Closes the current input stream and opens the next one, if any.
()
| 62 | */ |
| 63 | |
| 64 | private void advance() throws IOException { |
| 65 | close(); |
| 66 | if (it.hasNext()) { |
| 67 | in = it.next().openStream(); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public int available() throws IOException { |
no test coverage detected