MCPcopy Create free account
hub / github.com/ReadyTalk/avian / write

Method write

classpath/java/io/Writer.java:14–17  ·  view source on GitHub ↗
(int c)

Source from the content-addressed store, hash-verified

12
13public 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);

Callers

nothing calls this directly

Calls 2

toCharArrayMethod · 0.80
getCharsMethod · 0.45

Tested by

no test coverage detected