https://bz.apache.org/bugzilla/show_bug.cgi?id=59733

--- Comment #8 from Sebastiaan Blommers <blommer...@gmail.com> ---
By experiment I uncommented removeRow on the sheetData in XSSFSheets.shiftRows
function. Because this decouples the original row from the xml. I now try and
remove all cells instead when code decides to remove the row(s) to shift to.

//worksheet.getSheetData().removeRow(idx);
for(Iterator<Cell> cit = row.cellIterator(); cit.hasNext();) {
   row.removeCell(cit.next());
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to