MCPcopy Create free account
hub / github.com/apache/groovy / printIndent

Method printIndent

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

Prints the current indent level.

()

Source from the content-addressed store, hash-verified

171 * Prints the current indent level.
172 */
173 public void printIndent() {
174 for (int i = 0; i < indentLevel; i++) {
175 try {
176 out.write(indent);
177 } catch(IOException ioe) {
178 throw new GroovyRuntimeException(ioe);
179 }
180 }
181 }
182
183 /**
184 * Prints an end-of-line character (if enabled via addNewLines property).

Callers 3

printlnMethod · 0.95
printMethod · 0.45
printListMethod · 0.45

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected