()
| 130 | } |
| 131 | |
| 132 | @Override |
| 133 | public void newLine() throws IOException { |
| 134 | if (writer != null) { |
| 135 | writer.write(System.lineSeparator()); |
| 136 | } else { |
| 137 | write(System.lineSeparator()); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | @Override |
| 142 | public void print(boolean b) throws IOException { |