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

Method newLine

lib/java/io/BufferedWriter.java:169–171  ·  view source on GitHub ↗

Writes a newline to this writer. A newline is determined by the System property "line.separator". The target writer may or may not be flushed when a newline is written. @throws IOException if an error occurs attempting to write to this writer.

()

Source from the content-addressed store, hash-verified

167 * if an error occurs attempting to write to this writer.
168 */
169 public void newLine() throws IOException {
170 write(lineSeparator, 0, lineSeparator.length());
171 }
172
173 /**
174 * Writes {@code count} characters starting at {@code offset} in

Callers

nothing calls this directly

Calls 2

writeMethod · 0.95
lengthMethod · 0.65

Tested by

no test coverage detected