mirror of https://github.com/apache/poi.git
Fix warnings, typos etc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1052201 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9605338d1f
commit
f38bbd4de4
|
@ -21,14 +21,15 @@ import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
|
||||||
import org.apache.poi.poifs.common.POIFSBigBlockSize;
|
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.BlockWritable;
|
||||||
import org.apache.poi.poifs.storage.HeaderBlock;
|
import org.apache.poi.poifs.storage.HeaderBlock;
|
||||||
import org.apache.poi.poifs.storage.PropertyBlock;
|
import org.apache.poi.poifs.storage.PropertyBlock;
|
||||||
import org.apache.poi.poifs.storage.RawDataBlockList;
|
import org.apache.poi.poifs.storage.RawDataBlockList;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class embodies the Property Table for the filesystem; this is
|
* This class embodies the Property Table for the {@link POIFSFileSystem};
|
||||||
* basically the directory for all of the documents in the
|
* this is basically the directory for all of the documents in the
|
||||||
* filesystem.
|
* filesystem.
|
||||||
*
|
*
|
||||||
* @author Marc Johnson (mjohnson at apache dot org)
|
* @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
|
* to extract the property table from it). Populates the
|
||||||
* properties thoroughly
|
* 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
|
* @param blockList the list of blocks
|
||||||
*
|
*
|
||||||
* @exception IOException if anything goes wrong (which should be
|
* @exception IOException if anything goes wrong (which should be
|
||||||
|
|
|
@ -22,7 +22,6 @@ import java.io.OutputStream;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.poi.poifs.common.POIFSBigBlockSize;
|
import org.apache.poi.poifs.common.POIFSBigBlockSize;
|
||||||
import org.apache.poi.poifs.common.POIFSConstants;
|
|
||||||
import org.apache.poi.poifs.property.Property;
|
import org.apache.poi.poifs.property.Property;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -63,7 +62,7 @@ public final class PropertyBlock extends BigBlock {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public static BlockWritable [] createPropertyBlockArray(
|
public static BlockWritable [] createPropertyBlockArray(
|
||||||
final POIFSBigBlockSize bigBlockSize, final List properties)
|
final POIFSBigBlockSize bigBlockSize, final List<Property> properties)
|
||||||
{
|
{
|
||||||
int _properties_per_block = bigBlockSize.getPropertiesPerBlock();
|
int _properties_per_block = bigBlockSize.getPropertiesPerBlock();
|
||||||
int block_count =
|
int block_count =
|
||||||
|
|
Loading…
Reference in New Issue