aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2021-11-26 13:59:20 +0000
committerPJ Fanning <fanningpj@apache.org>2021-11-26 13:59:20 +0000
commitb5d1b91780131ba04089e142279f3c8aec652a3c (patch)
treeab03aac402e3d5108c9e42d59407c7804b876bb8 /poi-ooxml
parentb2b8bee161d3caaf0c2aa660f38912277ed89584 (diff)
downloadpoi-b5d1b91780131ba04089e142279f3c8aec652a3c.tar.gz
poi-b5d1b91780131ba04089e142279f3c8aec652a3c.zip
missing bracket
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895353 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml')
-rw-r--r--poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java b/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java
index 0e06557812..f38be63ce4 100644
--- a/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java
+++ b/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java
@@ -93,7 +93,7 @@ public final class AesZipFileZipEntrySource implements ZipEntrySource {
if(!closed) {
zipFile.close();
if (!tmpFile.delete()) {
- LOG.atWarn().log("{} can't be removed (or was already removed.", tmpFile.getAbsolutePath());
+ LOG.atWarn().log("{} can't be removed (or was already removed).", tmpFile.getAbsolutePath());
}
}
closed = true;