()
| 101 | } |
| 102 | |
| 103 | private ValveWriter writeIndentation() throws IOException { |
| 104 | for (int i = 0; i < this.indentation; i++) { |
| 105 | this.writer.write(INDENTATION); |
| 106 | } |
| 107 | return this; |
| 108 | } |
| 109 | |
| 110 | private ValveWriter write(String text) throws IOException { |
| 111 | this.writer.write(text); |