remove unnecessary cast

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1890631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-06-09 11:20:27 +00:00
parent 25470ddb55
commit 313b7acbc5
1 changed files with 1 additions and 2 deletions

View File

@ -141,8 +141,7 @@ public class XSSFExcelExtractor
}
// Rows and cells
for (Object rawR : sheet) {
Row row = (Row)rawR;
for (Row row : sheet) {
for(Iterator<Cell> ri = row.cellIterator(); ri.hasNext();) {
Cell cell = ri.next();