Typo and remove unnecessary casts

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1641941 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2014-11-26 21:11:18 +00:00
parent 1deed31c23
commit 81a3425f16
1 changed files with 3 additions and 5 deletions

View File

@ -95,8 +95,7 @@ public final class ChunkFactory {
defsL.add(def);
}
CommandDefinition[] defs = (CommandDefinition[])
defsL.toArray(new CommandDefinition[defsL.size()]);
CommandDefinition[] defs = defsL.toArray(new CommandDefinition[defsL.size()]);
// Add to the hashtable
chunkCommandDefinitions.put(Integer.valueOf(chunkType), defs);
@ -128,7 +127,7 @@ public final class ChunkFactory {
// as required
if(endOfDataPos > data.length) {
logger.log(POILogger.WARN,
"Header called for " + header.getLength() +" bytes, but that would take us passed the end of the data!");
"Header called for " + header.getLength() +" bytes, but that would take us past the end of the data!");
endOfDataPos = data.length;
header.length = data.length - offset - header.getSizeInBytes();
@ -171,8 +170,7 @@ public final class ChunkFactory {
Chunk chunk = new Chunk(header, trailer, separator, contents);
// Feed in the stuff from chunks_parse_cmds.tbl
CommandDefinition[] defs = (CommandDefinition[])
chunkCommandDefinitions.get(Integer.valueOf(header.getType()));
CommandDefinition[] defs = chunkCommandDefinitions.get(Integer.valueOf(header.getType()));
if(defs == null) defs = new CommandDefinition[0];
chunk.commandDefinitions = defs;