aboutsummaryrefslogtreecommitdiffstats
path: root/poi-integration
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-06-28 11:11:50 +0000
committerPJ Fanning <fanningpj@apache.org>2022-06-28 11:11:50 +0000
commitf212e7c14fc66573a44a85bfe45a8fb75b805635 (patch)
tree286669f73bfcfcb939bc5e0f4a66af8464be086d /poi-integration
parent4b1fc4f153c121960d2f8c1915a236fc95e43d8c (diff)
downloadpoi-f212e7c14fc66573a44a85bfe45a8fb75b805635.tar.gz
poi-f212e7c14fc66573a44a85bfe45a8fb75b805635.zip
try to fix rat check
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902313 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration')
-rw-r--r--poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java b/poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java
index 8f4c89587f..88b269b687 100644
--- a/poi-integration/src/test/java/org/apache/poi/stress/POIXMLDocumentHandler.java
+++ b/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();
}
}