]> source.dussan.org Git - poi.git/commitdiff
[bug-65854] don't warn about close on read-only zip entry
authorPJ Fanning <fanningpj@apache.org>
Fri, 28 Jan 2022 10:41:31 +0000 (10:41 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 28 Jan 2022 10:41:31 +0000 (10:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897562 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java
poi/src/main/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java

index b19b3c1d089ef532586d05d2d06fcd3a3b0c5afd..ac9568afba89373300dc8b36b8b5d711f1f4f4f1 100644 (file)
@@ -442,7 +442,7 @@ public abstract class OPCPackage implements RelationshipSource, Closeable {
         }
 
         if (this.packageAccess == PackageAccess.READ) {
-            LOG.atWarn().log("The close() method is intended to SAVE a package. This package is open in READ ONLY mode, use the revert() method instead!");
+            LOG.atDebug().log("The close() method is intended to SAVE a package. This package is open in READ ONLY mode, use the revert() method instead!");
             revert();
             return;
         }
index 8f9e24c9fb1dbb62c52fd8c34077fac98b6140f9..b6dd6688cdc1dc804f757812dab2ff523ad9ce93 100644 (file)
@@ -251,7 +251,7 @@ public final class ColumnInfoRecordsAggregate extends RecordAggregate implements
         int endIdx = findEndOfColumnOutlineGroup(idx);
 
         // expand:
-        // colapsed bit must be unset
+        // collapsed bit must be unset
         // hidden bit gets unset _if_ surrounding groups are expanded you can determine
         //   this by looking at the hidden bit of the enclosing group.  You will have
         //   to look at the start and the end of the current group to determine which