aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/poifs/storage/BigBlock.java
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2010-12-19 07:17:14 +0000
committerNick Burch <nick@apache.org>2010-12-19 07:17:14 +0000
commitb79ad301cf935e9e734811cdcf9881d4b07cffdb (patch)
tree69dad6e52c040a4acbb4a8a50db01c34ceb6dbca /src/java/org/apache/poi/poifs/storage/BigBlock.java
parent626e01a4e3287ef2cfe417d834d4a70218c6cb50 (diff)
downloadpoi-b79ad301cf935e9e734811cdcf9881d4b07cffdb.tar.gz
poi-b79ad301cf935e9e734811cdcf9881d4b07cffdb.zip
Make BATBlock useful for read (was previously write only)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1050770 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/poifs/storage/BigBlock.java')
-rw-r--r--src/java/org/apache/poi/poifs/storage/BigBlock.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/poifs/storage/BigBlock.java b/src/java/org/apache/poi/poifs/storage/BigBlock.java
index e9b41928b3..a3fa3f9e6e 100644
--- a/src/java/org/apache/poi/poifs/storage/BigBlock.java
+++ b/src/java/org/apache/poi/poifs/storage/BigBlock.java
@@ -21,8 +21,8 @@ package org.apache.poi.poifs.storage;
/**
* Abstract base class of all POIFS block storage classes. All
- * extensions of BigBlock should write 512 bytes of data when
- * requested to write their data.
+ * extensions of BigBlock should write 512 or 4096 bytes of data when
+ * requested to write their data (as per their BigBlockSize).
*
* This class has package scope, as there is no reason at this time to
* make the class public.