diff options
author | Nick Burch <nick@apache.org> | 2010-12-23 09:18:04 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2010-12-23 09:18:04 +0000 |
commit | f38bbd4de4ba01ce2ad4d4723caca4d1c76d9ae9 (patch) | |
tree | 588ad607b305c8db45afdaad0da67953ef4e4f6d /src/java/org/apache/poi/poifs | |
parent | 9605338d1f87a38d8721d7195b83616253f6db31 (diff) | |
download | poi-f38bbd4de4ba01ce2ad4d4723caca4d1c76d9ae9.tar.gz poi-f38bbd4de4ba01ce2ad4d4723caca4d1c76d9ae9.zip |
Fix warnings, typos etc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1052201 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/poifs')
-rw-r--r-- | src/java/org/apache/poi/poifs/property/PropertyTable.java | 7 | ||||
-rw-r--r-- | src/java/org/apache/poi/poifs/storage/PropertyBlock.java | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/poi/poifs/property/PropertyTable.java b/src/java/org/apache/poi/poifs/property/PropertyTable.java index 996d54f2fa..45a9734158 100644 --- a/src/java/org/apache/poi/poifs/property/PropertyTable.java +++ b/src/java/org/apache/poi/poifs/property/PropertyTable.java @@ -21,14 +21,15 @@ import java.io.IOException; import java.io.OutputStream; import org.apache.poi.poifs.common.POIFSBigBlockSize; +import org.apache.poi.poifs.filesystem.POIFSFileSystem; import org.apache.poi.poifs.storage.BlockWritable; import org.apache.poi.poifs.storage.HeaderBlock; import org.apache.poi.poifs.storage.PropertyBlock; import org.apache.poi.poifs.storage.RawDataBlockList; /** - * This class embodies the Property Table for the filesystem; this is - * basically the directory for all of the documents in the + * This class embodies the Property Table for the {@link POIFSFileSystem}; + * this is basically the directory for all of the documents in the * filesystem. * * @author Marc Johnson (mjohnson at apache dot org) @@ -49,7 +50,7 @@ public final class PropertyTable extends PropertyTableBase implements BlockWrita * to extract the property table from it). Populates the * properties thoroughly * - * @param startBlock the first block of the property table + * @param headerBlock the header block of the file * @param blockList the list of blocks * * @exception IOException if anything goes wrong (which should be diff --git a/src/java/org/apache/poi/poifs/storage/PropertyBlock.java b/src/java/org/apache/poi/poifs/storage/PropertyBlock.java index 06cb71c114..c824166bf5 100644 --- a/src/java/org/apache/poi/poifs/storage/PropertyBlock.java +++ b/src/java/org/apache/poi/poifs/storage/PropertyBlock.java @@ -22,7 +22,6 @@ import java.io.OutputStream; import java.util.List; import org.apache.poi.poifs.common.POIFSBigBlockSize; -import org.apache.poi.poifs.common.POIFSConstants; import org.apache.poi.poifs.property.Property; /** @@ -63,7 +62,7 @@ public final class PropertyBlock extends BigBlock { */ public static BlockWritable [] createPropertyBlockArray( - final POIFSBigBlockSize bigBlockSize, final List properties) + final POIFSBigBlockSize bigBlockSize, final List<Property> properties) { int _properties_per_block = bigBlockSize.getPropertiesPerBlock(); int block_count = |