Subclasses must call this method after finishing character processing, in order to ensure that any unterminated line in the buffer is passed to #handleLine. @throws IOException if an I/O error occurs
()
| 104 | |
| 105 | |
| 106 | protected void finish() throws IOException { |
| 107 | if (sawReturn || line.length() > 0) { |
| 108 | finishLine(false); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Called for each line found in the character data passed to {@link #add}. |
no test coverage detected