remove an unnecessary row

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-20 10:52:50 +00:00
parent fd545438b9
commit 5ad7ad2122
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ public final class TestXSSFSheetShiftRows extends BaseTestSheetShiftRows {
public void bug59733() throws IOException {
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet();
for (int r=0; r<=4; r++) {
for (int r=0; r<=3; r++) {
sheet.createRow(r);
}