You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2021/11/26 13:59:21 UTC

svn commit: r1895353 - /poi/trunk/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java

Author: fanningpj
Date: Fri Nov 26 13:59:20 2021
New Revision: 1895353

URL: http://svn.apache.org/viewvc?rev=1895353&view=rev
Log:
missing bracket

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

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java?rev=1895353&r1=1895352&r2=1895353&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/temp/AesZipFileZipEntrySource.java Fri Nov 26 13:59:20 2021
@@ -93,7 +93,7 @@ public final class AesZipFileZipEntrySou
         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;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org