Resets the stream to the most recent mark.
()
| 82 | * Resets the stream to the most recent mark. |
| 83 | */ |
| 84 | @Override |
| 85 | public void reset() throws IOException { |
| 86 | line = lineMark; |
| 87 | column = columnMark; |
| 88 | super.reset(); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Reads a single character. |
no outgoing calls