|
|
|
@ -98,14 +98,11 @@ public class CellElementsClip implements Cloneable, java.io.Serializable {
|
|
|
|
|
table.add(new ArrayList<>()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (currentRow < cellElement.getRow()) { |
|
|
|
|
for (int r = currentRow; r < cellElement.getRow(); r++) { |
|
|
|
|
table.add(new ArrayList<>()); |
|
|
|
|
} |
|
|
|
|
currentRow = cellElement.getRow(); |
|
|
|
|
while (currentRow<cellElement.getRow()){ |
|
|
|
|
table.add(new ArrayList<>()); |
|
|
|
|
currentRow++; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object cellValue = cellElement.getValue() == null ? StringUtils.EMPTY : cellElement.getValue(); |
|
|
|
|
table.get(currentRow - startRow).add(cellValue); |
|
|
|
|
} |
|
|
|
|