MCPcopy Create free account
hub / github.com/davidgiven/luje / writeTo

Method writeTo

lib/java/io/ByteArrayOutputStream.java:238–240  ·  view source on GitHub ↗

Takes the contents of this stream and writes it to the output stream out. @param out an OutputStream on which to write the contents of this stream. @throws IOException if an error occurs while writing to out.

(OutputStream out)

Source from the content-addressed store, hash-verified

236 * if an error occurs while writing to {@code out}.
237 */
238 public synchronized void writeTo(OutputStream out) throws IOException {
239 out.write(buf, 0, count);
240 }
241}

Callers

nothing calls this directly

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected