(int c)
| 12 | |
| 13 | public abstract class Writer implements Closeable, Flushable { |
| 14 | public void write(int c) throws IOException { |
| 15 | char[] buffer = new char[] { (char) c }; |
| 16 | write(buffer); |
| 17 | } |
| 18 | |
| 19 | public void write(char[] buffer) throws IOException { |
| 20 | write(buffer, 0, buffer.length); |
nothing calls this directly
no test coverage detected