Prints a string followed by an end of line character. @param text String to be written
(String text)
| 132 | * @param text String to be written |
| 133 | */ |
| 134 | public void println(String text) { |
| 135 | try { |
| 136 | if(autoIndent) printIndent(); |
| 137 | out.write(text); |
| 138 | println(); |
| 139 | } catch(IOException ioe) { |
| 140 | throw new GroovyRuntimeException(ioe); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Prints a string. |
no test coverage detected