Flushes the internal buffer.
()
| 143 | * Flushes the internal buffer. |
| 144 | */ |
| 145 | private void flushInternal() throws IOException { |
| 146 | if (pos > 0) { |
| 147 | out.write(buf, 0, pos); |
| 148 | } |
| 149 | pos = 0; |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Indicates whether this writer is closed. |