(CharSequence csq)
| 104 | } |
| 105 | |
| 106 | public Writer append(CharSequence csq) throws IOException { |
| 107 | write(csq.toString()); |
| 108 | return this; |
| 109 | } |
| 110 | |
| 111 | public Writer append(char c) throws IOException { |
| 112 | write(c); |
nothing calls this directly
no test coverage detected