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

Method write

lib/java/io/FilterOutputStream.java:101–104  ·  view source on GitHub ↗

Writes the entire contents of the byte array buffer to this stream. This implementation writes the buffer to the target stream. @param buffer the buffer to be written. @throws IOException if an I/O error occurs while writing to this stream.

(byte buffer[])

Source from the content-addressed store, hash-verified

99 * if an I/O error occurs while writing to this stream.
100 */
101 @Override
102 public void write(byte buffer[]) throws IOException {
103 write(buffer, 0, buffer.length);
104 }
105
106 /**
107 * Writes {@code count} bytes from the byte array {@code buffer} starting at

Callers

nothing calls this directly

Calls 2

getStringMethod · 0.95
writeMethod · 0.65

Tested by

no test coverage detected