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

Method write

classpath/java/io/PrintStream.java:128–131  ·  view source on GitHub ↗
(int c)

Source from the content-addressed store, hash-verified

126 }
127
128 public void write(int c) throws IOException {
129 out.write(c);
130 if (autoFlush && c == '\n') flush();
131 }
132
133 public void write(byte[] buffer, int offset, int length) throws IOException {
134 out.write(buffer, offset, length);

Callers

nothing calls this directly

Calls 2

flushMethod · 0.95
writeMethod · 0.65

Tested by

no test coverage detected