Browse Source

Deprecated xssfSheetIterator has been removed, so remove javadoc reference

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1800288 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_17_FINAL
Nick Burch 7 years ago
parent
commit
c1ff9d3888
1 changed files with 1 additions and 7 deletions
  1. 1
    7
      src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java

+ 1
- 7
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java View File

@@ -1196,16 +1196,10 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
* Alias for {@link #sheetIterator()} to allow
* foreach loops
*
* <code>Iterator<XSSFSheet> iterator()<code> was replaced with <code>Iterator<Sheet> iterator()</code>
* to make iterating over a container (Workbook, Sheet, Row) consistent across POI spreadsheets.
* This breaks backwards compatibility and may affect your code.
* See {@link XSSFWorkbook#xssfSheetIterator} for how to upgrade your code to be compatible
* with the new interface.
*
* Note: remove() is not supported on this iterator.
* Use {@link #removeSheetAt(int)} to remove sheets instead.
*
* @return an iterator of the sheets.
* @return an iterator of the sheets.
*/
@Override
public Iterator<Sheet> iterator() {

Loading…
Cancel
Save