]> source.dussan.org Git - poi.git/commitdiff
missing bracket
authorPJ Fanning <fanningpj@apache.org>
Fri, 26 Nov 2021 13:59:20 +0000 (13:59 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 26 Nov 2021 13:59:20 +0000 (13:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895353 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java

index 0e0655781221f85773fd5219dd1d24d5d6dda33d..f38be63ce4af29b9e512c9438ab79b3525bac0f0 100644 (file)
@@ -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;