diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-11-26 13:59:20 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-11-26 13:59:20 +0000 |
commit | b5d1b91780131ba04089e142279f3c8aec652a3c (patch) | |
tree | ab03aac402e3d5108c9e42d59407c7804b876bb8 /poi-ooxml | |
parent | b2b8bee161d3caaf0c2aa660f38912277ed89584 (diff) | |
download | poi-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.java | 2 |
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; |