Return-Path: Delivered-To: apmail-poi-commits-archive@locus.apache.org Received: (qmail 58847 invoked from network); 11 Oct 2008 10:32:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Oct 2008 10:32:16 -0000 Received: (qmail 93221 invoked by uid 500); 11 Oct 2008 10:32:16 -0000 Delivered-To: apmail-poi-commits-archive@poi.apache.org Received: (qmail 93181 invoked by uid 500); 11 Oct 2008 10:32:15 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 93172 invoked by uid 99); 11 Oct 2008 10:32:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Oct 2008 03:32:15 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Oct 2008 10:31:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6173A23888A4; Sat, 11 Oct 2008 03:31:25 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r703645 - /poi/trunk/src/documentation/content/xdocs/hssf/eval.xml Date: Sat, 11 Oct 2008 10:31:25 -0000 To: commits@poi.apache.org From: yegor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081011103125.6173A23888A4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: yegor Date: Sat Oct 11 03:31:24 2008 New Revision: 703645 URL: http://svn.apache.org/viewvc?rev=703645&view=rev Log: fixed error in eval.xml: use < instead of '<' Modified: poi/trunk/src/documentation/content/xdocs/hssf/eval.xml Modified: poi/trunk/src/documentation/content/xdocs/hssf/eval.xml URL: http://svn.apache.org/viewvc/poi/trunk/src/documentation/content/xdocs/hssf/eval.xml?rev=703645&r1=703644&r2=703645&view=diff ============================================================================== --- poi/trunk/src/documentation/content/xdocs/hssf/eval.xml (original) +++ poi/trunk/src/documentation/content/xdocs/hssf/eval.xml Sat Oct 11 03:31:24 2008 @@ -207,7 +207,7 @@ 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 < wb.getNumberOfSheets(); sheetNum++) { HSSFSheet sheet = wb.getSheetAt(sheetNum); for(Iterator rit = sheet.rowIterator(); rit.hasNext();) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org