diff options
author | Yegor Kozlov <yegor@apache.org> | 2008-11-11 18:57:50 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2008-11-11 18:57:50 +0000 |
commit | 8987da6f67c7f0480dd7f090ad9eb0830ee7e130 (patch) | |
tree | 74366e5e13ddd67d195c47f2d839350d3f29cc97 /src/documentation/content/xdocs/spreadsheet/how-to.xml | |
parent | 6f713d4aac4dd89a56916f165f83116b45065b68 (diff) | |
download | poi-8987da6f67c7f0480dd7f090ad9eb0830ee7e130.tar.gz poi-8987da6f67c7f0480dd7f090ad9eb0830ee7e130.zip |
docs cleanup and improvements
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@713108 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/content/xdocs/spreadsheet/how-to.xml')
-rw-r--r-- | src/documentation/content/xdocs/spreadsheet/how-to.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documentation/content/xdocs/spreadsheet/how-to.xml b/src/documentation/content/xdocs/spreadsheet/how-to.xml index 5d70b08345..8451813f0f 100644 --- a/src/documentation/content/xdocs/spreadsheet/how-to.xml +++ b/src/documentation/content/xdocs/spreadsheet/how-to.xml @@ -597,7 +597,7 @@ public class ExampleEventUserModel { // Do now, as characters() may be called more than once if(nextIsString) { int idx = Integer.parseInt(lastContents); - lastContents = sst.getSharedStringAt(idx); + lastContents = new XSSFRichTextString(sst.getEntryAt(idx)).toString(); } // v => contents of a cell |