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)
| 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 |
nothing calls this directly
no test coverage detected