https://issues.apache.org/bugzilla/show_bug.cgi?id=51673
--- Comment #1 from Geeya <[email protected]> 2011-10-13 21:12:25 UTC --- We tried to debug the issue and the issue is in groupRow() method of XSSFSheet object (_sh) in SXSSFSheet. SXSSFSheet.groupRow() calls XSSFSheet.groupRow() method. This method checks if the row exists already, if yes, then create a new row. For some reasons _rows map is empty in XSSFSheet , whereas _rows in SXSSFSheet is populated. So XSSFSheet.groupRow() method overwrites the content by creating a new Row for the same index. In short, SXSSFSheet._rows and XSSFSheet._rows are not in sync and so the rows are corrupted. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
