return;
}
if (null != out) {
if(!(out instanceof FastBufferWriter)) {
FastBufferWriter bout = new FastBufferWriter();
pprint(((DOMDocumentImpl) doc).adaptee, OutFactory.getOut(
this.configuration, bout));
bout.writeTo(out);
} else {
pprint(((DOMDocumentImpl) doc).adaptee, OutFactory.getOut(
this.configuration, out));
}
}