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:
parent
0c7c5fe873
commit
5a6b2f2299
@ -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>
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user