Indicates whether this writer is closed. @return true if this writer is closed, false otherwise.
()
| 155 | * @return {@code true} if this writer is closed, {@code false} otherwise. |
| 156 | */ |
| 157 | private boolean isClosed() { |
| 158 | return out == null; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Writes a newline to this writer. A newline is determined by the System |