Returns a new instance.
(BufferedSink source)
| 108 | * Returns a new instance. |
| 109 | */ |
| 110 | public static XmlWriter of(BufferedSink source) { |
| 111 | return new XmlWriter(source); |
| 112 | } |
| 113 | |
| 114 | private void pushStack(int newTop) { |
| 115 | if (stackSize == stack.length) { |
no outgoing calls