MCPcopy Index your code
hub / github.com/davidgiven/luje / flushInternal

Method flushInternal

lib/java/io/BufferedWriter.java:145–150  ·  view source on GitHub ↗

Flushes the internal buffer.

()

Source from the content-addressed store, hash-verified

143 * Flushes the internal buffer.
144 */
145 private void flushInternal() throws IOException {
146 if (pos > 0) {
147 out.write(buf, 0, pos);
148 }
149 pos = 0;
150 }
151
152 /**
153 * Indicates whether this writer is closed.

Callers 2

closeMethod · 0.95
flushMethod · 0.95

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected