(String title)
| 96 | } |
| 97 | |
| 98 | private void writeLine(String title) throws IOException { |
| 99 | this.writeIndentation() |
| 100 | .write(title + ValveWriter.LINE_BREAK); |
| 101 | } |
| 102 | |
| 103 | private ValveWriter writeIndentation() throws IOException { |
| 104 | for (int i = 0; i < this.indentation; i++) { |
no test coverage detected