소스 검색

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 년 전
부모
커밋
f212e7c14f
2개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. 1
    2
      build.gradle
  2. 1
    4
      poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java

+ 1
- 2
build.gradle 파일 보기

@@ -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.*",

+ 1
- 4
poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java 파일 보기

@@ -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();
}
}


Loading…
취소
저장