remove unnecessary close

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1872283 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2020-01-03 11:24:12 +00:00
parent 8b389fdd4b
commit 4a7aee8b1f
1 changed files with 0 additions and 16 deletions

View File

@ -767,7 +767,6 @@ public class POIXMLDocumentPart {
if (coreRel != null) {
PackagePart pp = pkg.getPart(coreRel);
if (pp == null) {
closeQuietly(pp);
throw new POIXMLException("OOXML file structure broken/invalid - core document '" + coreRel.getTargetURI() + "' not found.");
}
return pp;
@ -781,19 +780,4 @@ public class POIXMLDocumentPart {
throw new POIXMLException("OOXML file structure broken/invalid - no core document found!");
}
private static void closeQuietly(final PackagePart closeable) {
// no need to log a NullPointerException here
if(closeable == null) {
return;
}
try {
closeable.close();
} catch ( Exception exc ) {
logger.log( POILogger.ERROR, "Unable to close resource: " + exc,
exc );
}
}
}