jlolling commented on code in PR #600: URL: https://github.com/apache/poi/pull/600#discussion_r1504275708
########## poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java: ########## @@ -1431,12 +1443,12 @@ private int findStartOfRowOutlineGroup(int rowIndex) { private int writeHidden(SXSSFRow xRow, int rowIndex) { int level = xRow.getOutlineLevel(); - SXSSFRow currRow = getRow(rowIndex); + SXSSFRow currRow = (SXSSFRow) getRow(rowIndex); Review Comment: Agree, actually the reference to SXSSFRow is not needed here, instead Row would be fine. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org