]> source.dussan.org Git - poi.git/commitdiff
bug 59733: cells do not need to be created for the XmlValueDisconnectedException...
authorJaven O'Neal <onealj@apache.org>
Mon, 20 Jun 2016 10:49:05 +0000 (10:49 +0000)
committerJaven O'Neal <onealj@apache.org>
Mon, 20 Jun 2016 10:49:05 +0000 (10:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749298 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetShiftRows.java

index c821d606efbca4913a7f65b687e7aa473a4f457c..a4ea84a38dc4955b9316fdfa613f9f4cb181ef57 100644 (file)
@@ -372,11 +372,9 @@ public final class TestXSSFSheetShiftRows extends BaseTestSheetShiftRows {
     @Test
     public void bug59733() throws IOException {
         Workbook workbook = new XSSFWorkbook();
-        Sheet sheet = workbook.createSheet("mySheet");
+        Sheet sheet = workbook.createSheet();
         for (int r=0; r<=4; r++) {
-            Row row = sheet.createRow(r);
-            row.createCell(r*2+0);
-            row.createCell(r*2+1);
+            sheet.createRow(r);
         }
 
         // Shift the 2nd row on top of the 0th row
@@ -384,6 +382,8 @@ public final class TestXSSFSheetShiftRows extends BaseTestSheetShiftRows {
         
         /*
          * The following error is thrown when shifting the 3rd row on top of the 0th row
+         * If the rows are not created, the error does not occur
+
         org.apache.xmlbeans.impl.values.XmlValueDisconnectedException
             at org.apache.xmlbeans.impl.values.XmlObjectBase.check_orphaned(XmlObjectBase.java:1258)
             at org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTRowImpl.getR(Unknown Source)