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