use of org.dom4j.VisitorSupport in project atlas by alibaba.
the class ManifestFileUtils method removeComments.
/**
* 移除xml中的注释
*
* @param document
* @throws IOException
* @throws DocumentException
*/
private static void removeComments(Document document) throws IOException, DocumentException {
Visitor visitor = new VisitorSupport() {
public void visit(Comment comment) {
comment.setText(" ");
}
};
document.accept(visitor);
}
Aggregations