MCPcopy Create free account
hub / github.com/antlr/codebuff / writeLines

Method writeLines

output/java_guava/1.4.19/CharSink.java:121–123  ·  view source on GitHub ↗

Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator. This method is equivalent to writeLines(lines, System.getProperty("line.separator")). @throws IOException if an I/O error occurs in the process of w

(Iterable<? extends CharSequence> lines)

Source from the content-addressed store, hash-verified

119
120
121 public void writeLines(Iterable<? extends CharSequence> lines) throws IOException {
122 writeLines(lines, System.getProperty("line.separator"));
123 }
124
125 /**
126 * Writes the given lines of text to this sink with each line (including the last) terminated with

Callers

nothing calls this directly

Calls 9

createMethod · 0.95
registerMethod · 0.95
openBufferedStreamMethod · 0.95
rethrowMethod · 0.95
closeMethod · 0.95
getPropertyMethod · 0.65
checkNotNullMethod · 0.45
appendMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected