try to fix rat check

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902313 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-06-28 11:11:50 +00:00
parent 4b1fc4f153
commit f212e7c14f
2 changed files with 2 additions and 6 deletions

View File

@ -647,8 +647,7 @@ rat {
"poi/src/main/resources/org/apache/poi/sl/draw/geom/presetShapeDefinitions.xml",
"poi-ooxml/src/main/resources/org/apache/poi/xslf/usermodel/notesMaster.xml",
"poi-ooxml/src/main/resources/org/apache/poi/xssf/usermodel/presetTableStyles.xml",
"poi-ooxml-full/src/main/xmlschema/org/apache/poi/schemas/XAdES*.xsd",
"poi-ooxml-full/src/main/xmlschema/org/apache/poi/schemas/xmldsig-core-schema.xsd",
"poi-ooxml-full/src/main/xmlschema/org/apache/poi/schemas/*.xsd",
"poi-ooxml-full/src/main/xmlschema/org/apache/poi/xdgf/visio.xsd",
"osgi/README.md",
"src/resources/ooxml-lite-report.*",

View File

@ -57,11 +57,8 @@ public final class POIXMLDocumentHandler {
* @param base the entry point
*/
protected static void cursorRecursive(XmlObject base) {
XmlCursor cur = base.newCursor();
try {
try (XmlCursor cur = base.newCursor()) {
cursorRecursive(cur);
} finally {
cur.dispose();
}
}