diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-01-28 10:41:31 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-01-28 10:41:31 +0000 |
commit | 1d2905bc05226e93d746a2a03b8f0128603468a2 (patch) | |
tree | cbca2b1a3dca7753e81e307adb5d688747efdc7c /poi/src | |
parent | 7ad12383930f826899d559466f15fa6b49d491bd (diff) | |
download | poi-1d2905bc05226e93d746a2a03b8f0128603468a2.tar.gz poi-1d2905bc05226e93d746a2a03b8f0128603468a2.zip |
[bug-65854] don't warn about close on read-only zip entry
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897562 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi/src')
-rw-r--r-- | poi/src/main/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi/src/main/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java b/poi/src/main/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java index 8f9e24c9fb..b6dd6688cd 100644 --- a/poi/src/main/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java +++ b/poi/src/main/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java @@ -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 |