]> source.dussan.org Git - poi.git/commitdiff
Bugzilla 52895 - show SSTIndex instead of XFIndex in LabelSSTRecord.toString()
authorYegor Kozlov <yegor@apache.org>
Tue, 13 Mar 2012 07:20:38 +0000 (07:20 +0000)
committerYegor Kozlov <yegor@apache.org>
Tue, 13 Mar 2012 07:20:38 +0000 (07:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1299990 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/status.xml
src/java/org/apache/poi/hssf/record/LabelSSTRecord.java

index 8d0cb5dc946784ee924e6960d7752c083e36a8f4..abf8b7e4dae01b85545228f357601bf32cfb8cd3 100644 (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>
index 83667ef55f027a89001d6bdefb2342991e9e841c..8f279caf99b1eb94f8fd360c20b28f03a0ad439d 100644 (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) {