public void closeDocument()

in util/src/main/java/org/apache/jsieve/util/XmlOut.java [589:599]


    public void closeDocument() throws IOException {
        if (elementNames.isEmpty()) {
            if (!elementsWritten) {
                throw new OperationNotAllowedException("Close called before an element has been opened.");
            }
        }
        while (!elementNames.isEmpty()) {
            closeElement();
        }
        writer.flush();
    }