(String title)
| 47 | } |
| 48 | |
| 49 | public ValveWriter open(String title) throws IOException { |
| 50 | this.writeLine(title); |
| 51 | this.writeLine(OPEN_TAG); |
| 52 | this.indentation++; |
| 53 | return this; |
| 54 | } |
| 55 | |
| 56 | public ValveWriter close() throws IOException { |
| 57 | this.indentation--; |
no test coverage detected