]> source.dussan.org Git - poi.git/commitdiff
Javadoc fixes
authorNick Burch <nick@apache.org>
Thu, 17 Sep 2015 11:18:15 +0000 (11:18 +0000)
committerNick Burch <nick@apache.org>
Thu, 17 Sep 2015 11:18:15 +0000 (11:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1703575 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java

index 3af73134a7a4b6652cd2ed42daeea19533835c36..0013580e48aa18d09a6af4b8076888b3c530810b 100644 (file)
@@ -1115,8 +1115,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
     }
     
     /**
-     *  
-     *  xssfSheetIterator was added to make transitioning to the new Iterator<Sheet> iterator()
+     * xssfSheetIterator was added to make transitioning to the new Iterator<Sheet> iterator()
      *  interface less painful for projects currently using POI.
      *  
      *  If your code was written using a for-each loop:
@@ -1129,9 +1128,9 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
      *  There are two ways to upgrade your code:
      *  // Option A:
      *  <pre><code>
-     *      for (XSSFSheet sh : (Iterable<XSSFSheet>) (Iterable<? extends Sheet>) wb) {
-     *          sh.createRow(0);
-     *      }
+     *  for (XSSFSheet sh : (Iterable<XSSFSheet>) (Iterable<? extends Sheet>) wb) {
+     *      sh.createRow(0);
+     *  }
      *  </code></pre>
      *      
      *  // Option B (preferred for new code):
@@ -1160,7 +1159,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
      *
      *  // Option B:
      *  <pre><code>
-     *  @SuppressWarnings("deprecation")
+     *  &#64;SuppressWarnings("deprecation")
      *  Iterator<XSSFSheet> it = wb.xssfSheetIterator();
      *  XSSFSheet sh = it.next();
      *  sh.createRow(0);