(Iterator<? extends CharSource> readers)
| 36 | private Reader current; |
| 37 | |
| 38 | MultiReader(Iterator<? extends CharSource> readers) throws IOException { |
| 39 | this.it = readers; |
| 40 | advance(); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Closes the current reader and opens the next one, if any. |