Appends the character c to the target. This method works the same way as #write(int). @param c the character to append to the target stream. @return this writer. @throws IOException if this writer is closed or another I/O error occurs.
(char c)
| 185 | * if this writer is closed or another I/O error occurs. |
| 186 | */ |
| 187 | public Writer append(char c) throws IOException { |
| 188 | write(c); |
| 189 | return this; |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Appends the character sequence {@code csq} to the target. This method |
nothing calls this directly
no test coverage detected