MCPcopy Index your code
hub / github.com/processing/processing / indent

Method indent

core/src/processing/data/JSONObject.java:1804–1808  ·  view source on GitHub ↗
(Writer writer, int indent)

Source from the content-addressed store, hash-verified

1802
1803
1804 static final void indent(Writer writer, int indent) throws IOException {
1805 for (int i = 0; i < indent; i += 1) {
1806 writer.write(' ');
1807 }
1808 }
1809
1810 /**
1811 * Write the contents of the JSONObject as JSON text to a writer.

Callers 2

writeInternalMethod · 0.95
writeInternalMethod · 0.95

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected