Skip to content

Commit

Permalink
merged with trunk r703645
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/poi/tags/REL_3_2_FINAL@703646 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Yegor Kozlov committed Oct 11, 2008
1 parent fff0984 commit 6e81472
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/documentation/content/xdocs/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</devs>

<!-- Don't forget to update status.xml too! -->
<release version="3.2-final" date="2008-10-19">
<release version="3.2-FINAL" date="2008-10-19">
<action dev="POI-DEVELOPERS" type="fix">45866 - allowed for change of unicode compression across Continue records</action>
<action dev="POI-DEVELOPERS" type="fix">45964 - support for link formulas in Text Objects</action>
<action dev="POI-DEVELOPERS" type="fix">43354 - support for evalating formulas with missing args</action>
Expand Down
2 changes: 1 addition & 1 deletion src/documentation/content/xdocs/hssf/eval.xml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ if (cell!=null) {
FileInputStream fis = new FileInputStream("/somepath/test.xls");
HSSFWorkbook wb = new HSSFWorkbook(fis);
HSSFFormulaEvaluator evaluator = new HSSFFormulaEvaluator(wb);
for(int sheetNum = 0; sheetNum < wb.getNumberOfSheets(); sheetNum++) {
for(int sheetNum = 0; sheetNum &lt; wb.getNumberOfSheets(); sheetNum++) {
HSSFSheet sheet = wb.getSheetAt(sheetNum);

for(Iterator rit = sheet.rowIterator(); rit.hasNext();) {
Expand Down
2 changes: 1 addition & 1 deletion src/documentation/content/xdocs/status.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<!-- Don't forget to update changes.xml too! -->
<changes>
<release version="3.2-final" date="2008-10-19">
<release version="3.2-FINAL" date="2008-10-19">
<action dev="POI-DEVELOPERS" type="fix">45866 - allowed for change of unicode compression across Continue records</action>
<action dev="POI-DEVELOPERS" type="fix">45964 - support for link formulas in Text Objects</action>
<action dev="POI-DEVELOPERS" type="fix">43354 - support for evalating formulas with missing args</action>
Expand Down

0 comments on commit 6e81472

Please sign in to comment.