(Appendable appendable)
| 143 | } |
| 144 | |
| 145 | static Writer writerForAppendable(Appendable appendable) { |
| 146 | return appendable instanceof Writer ? (Writer) appendable : new AppendableWriter(appendable); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Adapts an {@link Appendable} so it can be passed anywhere a {@link Writer} |