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)
| 111 | * @throws IOException if an I/O error occurs in the process of writing to this sink |
| 112 | */ |
| 113 | public void writeLines(Iterable<? extends CharSequence> lines) throws IOException { |
| 114 | writeLines(lines, System.getProperty("line.separator")); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Writes the given lines of text to this sink with each line (including the last) terminated with |
nothing calls this directly
no test coverage detected