Bugzilla 52895 - show SSTIndex instead of XFIndex in LabelSSTRecord.toString()

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1299990 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2012-03-13 07:20:38 +00:00
parent 0c7c5fe873
commit 5a6b2f2299
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@
<changes>
<release version="3.8-beta6" date="2012-??-??">
<action dev="poi-developers" type="fix">52895 - show SSTIndex instead of XFIndex in LabelSSTRecord.toString()</action>
<action dev="poi-developers" type="fix">52835 - Tolerate missing Count and UniqueCount attributes when parsing shared strings table in XSSF eventusermodel</action>
<action dev="poi-developers" type="add">52818 - Added implementation for RANK()</action>
<action dev="poi-developers" type="fix">52682 - allow setting text with trailing carriage return in HSLF</action>

View File

@ -70,7 +70,7 @@ public final class LabelSSTRecord extends CellRecord {
@Override
protected void appendValueText(StringBuilder sb) {
sb.append(" .sstIndex = ");
sb.append(HexDump.shortToHex(getXFIndex()));
sb.append(HexDump.shortToHex(getSSTIndex()));
}
@Override
protected void serializeValue(LittleEndianOutput out) {