in src/main/java/org/apache/sling/sitemap/impl/builder/SitemapImpl.java [77:89]
public void close() throws IOException {
if (closed) {
return;
}
try {
closed = true;
writePendingUrl();
out.write("</urlset>");
out.flush();
} catch (SitemapException ex) {
unwrapIOException(ex);
}
}