Browse Source

try to fix rat check

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902313 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_3
PJ Fanning 1 year ago
parent
commit
f212e7c14f

+ 1
- 2
build.gradle View File

"poi/src/main/resources/org/apache/poi/sl/draw/geom/presetShapeDefinitions.xml", "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/xslf/usermodel/notesMaster.xml",
"poi-ooxml/src/main/resources/org/apache/poi/xssf/usermodel/presetTableStyles.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", "poi-ooxml-full/src/main/xmlschema/org/apache/poi/xdgf/visio.xsd",
"osgi/README.md", "osgi/README.md",
"src/resources/ooxml-lite-report.*", "src/resources/ooxml-lite-report.*",

+ 1
- 4
poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java View File

* @param base the entry point * @param base the entry point
*/ */
protected static void cursorRecursive(XmlObject base) { protected static void cursorRecursive(XmlObject base) {
XmlCursor cur = base.newCursor();
try {
try (XmlCursor cur = base.newCursor()) {
cursorRecursive(cur); cursorRecursive(cur);
} finally {
cur.dispose();
} }
} }



Loading…
Cancel
Save