mirror of https://github.com/apache/poi.git
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:
parent
25470ddb55
commit
313b7acbc5
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue