From b9621dfb147c233ac8779c9727c676641f0e561b Mon Sep 17 00:00:00 2001
From: Nick Burch
Date: Wed, 13 Jan 2010 13:46:36 +0000
Subject: [PATCH] Tweak the iterator section to avoid casts as we have
generics, and then ditch the hssf duplicate bit (everyone should be pointed
at the ss.usermodel version)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@898750 13f79535-47bb-0310-9956-ffa450edef68
---
.../content/xdocs/spreadsheet/quick-guide.xml | 20 +++++--------------
1 file changed, 5 insertions(+), 15 deletions(-)
diff --git a/src/documentation/content/xdocs/spreadsheet/quick-guide.xml b/src/documentation/content/xdocs/spreadsheet/quick-guide.xml
index b2feca0679..a959090ac3 100644
--- a/src/documentation/content/xdocs/spreadsheet/quick-guide.xml
+++ b/src/documentation/content/xdocs/spreadsheet/quick-guide.xml
@@ -266,24 +266,14 @@
and Sheet provides a rowIterator() method to
give an iterator over all the rows.
Alternately, Sheet and Row both implement java.lang.Iterable,
- so if you're using Java 1.5, you can simply take advantage
+ so using Java 1.5 you can simply take advantage
of the built in "foreach" support - see below.