MCPcopy Index your code
hub / github.com/apache/groovy / println

Method println

src/main/java/groovy/util/IndentPrinter.java:134–142  ·  view source on GitHub ↗

Prints a string followed by an end of line character. @param text String to be written

(String text)

Source from the content-addressed store, hash-verified

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.

Callers 7

processArgsMethod · 0.45
processReaderMethod · 0.45
GroovySocketServerMethod · 0.45
runMethod · 0.45
mainMethod · 0.45
printMethod · 0.45
printListMethod · 0.45

Calls 2

printIndentMethod · 0.95
writeMethod · 0.65

Tested by

no test coverage detected