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 {@code writeLines(lines, System.getProperty("line.separator"))}. @throws IOException if an I/O error occurs while writing to th
(Iterable<? extends CharSequence> lines)
| 107 | * @throws IOException if an I/O error occurs while writing to this sink |
| 108 | */ |
| 109 | public void writeLines(Iterable<? extends CharSequence> lines) throws IOException { |
| 110 | writeLines(lines, System.getProperty("line.separator")); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Writes the given lines of text to this sink with each line (including the last) terminated with |