(Writer out, String newline)
| 84 | public int lineWidth = NO_WRAP; |
| 85 | |
| 86 | public AutoIndentWriter(Writer out, String newline) { |
| 87 | this.out = out; |
| 88 | indents.add(null); // s oftart with no indent |
| 89 | this.newline = newline; |
| 90 | } |
| 91 | public AutoIndentWriter(Writer out) { |
| 92 | this(out, System.getProperty("line.separator")); |
| 93 | } |
nothing calls this directly
no test coverage detected