(Writer writer, int indent)
| 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. |
no test coverage detected