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

Method write

lib/java/io/FileOutputStream.java:242–245  ·  view source on GitHub ↗

Writes the entire contents of the byte array buffer to this stream. @param buffer the buffer to be written to the file. @throws IOException if this stream is closed or an error occurs attempting to write to this stream.

(byte[] buffer)

Source from the content-addressed store, hash-verified

240 * write to this stream.
241 */
242 @Override
243 public void write(byte[] buffer) throws IOException {
244 write(buffer, 0, buffer.length);
245 }
246
247 /**
248 * Writes {@code count} bytes from the byte array {@code buffer} starting at

Callers

nothing calls this directly

Calls 2

openCheckMethod · 0.95
writeMethod · 0.65

Tested by

no test coverage detected