Minor code clean-up

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@743484 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Josh Micich 2009-02-11 20:23:08 +00:00
parent 6ddeb6eded
commit ffe6fd7a23
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ public class ExternSheetRecord extends StandardRecord {
public final static short sid = 0x0017; public final static short sid = 0x0017;
private List<RefSubRecord> _list; private List<RefSubRecord> _list;
private final class RefSubRecord { private static final class RefSubRecord {
public static final int ENCODED_SIZE = 6; public static final int ENCODED_SIZE = 6;
/** index to External Book Block (which starts with a EXTERNALBOOK record) */ /** index to External Book Block (which starts with a EXTERNALBOOK record) */

View File

@ -57,8 +57,8 @@ public final class RecalcIdRecord extends StandardRecord {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("[RECALCID]\n"); buffer.append("[RECALCID]\n");
buffer.append(" .reserved = ").append(HexDump.shortToHex(_reserved0)); buffer.append(" .reserved = ").append(HexDump.shortToHex(_reserved0)).append("\n");
buffer.append(" .engineId = ").append(HexDump.intToHex(_engineId)); buffer.append(" .engineId = ").append(HexDump.intToHex(_engineId)).append("\n");
buffer.append("[/RECALCID]\n"); buffer.append("[/RECALCID]\n");
return buffer.toString(); return buffer.toString();
} }