Write a newline @param output
(BufferedWriter output)
| 110 | * @param output |
| 111 | */ |
| 112 | public static void newLine(BufferedWriter output) |
| 113 | { |
| 114 | try |
| 115 | { |
| 116 | output.newLine(); |
| 117 | } |
| 118 | catch (IOException exception) |
| 119 | { |
| 120 | ShowMessageDelegate.showMessageDialog(exception.getMessage(), Constants.APPLICATION_NAME, |
| 121 | MessageType.ERROR); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Write to the output |
no test coverage detected