pjfanning commented on code in PR #600:
URL: https://github.com/apache/poi/pull/600#discussion_r1504254481


##########
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##########
@@ -215,8 +216,13 @@ public void removeRow(Row row) {
      * @return Row representing the rownumber or null if its not defined on 
the sheet
      */
     @Override
-    public SXSSFRow getRow(int rownum) {
-        return _rows.get(rownum);
+    public Row getRow(int rownum) {
+       Row row = _rows.get(rownum);
+       // BugZilla 67646: allow reading all the content
+       if (row == null) {
+               row = _sh.getRow(rownum);

Review Comment:
   use spaces not tabs



-- 
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

Reply via email to