https://issues.apache.org/bugzilla/show_bug.cgi?id=47147
Summary: XWPFTableCell.getCell() creates an unecessary
Paragraph
Product: POI
Version: 3.5-dev
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: XWPF
AssignedTo: [email protected]
ReportedBy: [email protected]
XWPFTable table = doc.createTable(1,3);
XWPFTableRow row = table.getRow(0);
XWPFTableCell cell = row.getCell(1);
cell = row.getCell(1);
cell = row.getCell(1);
cell = row.getCell(1);
cell = row.getCell(1);
cell = row.getCell(1);
cell.setText("text");
The resulting cell will have mutltiple parapgraphs.
But only one should be there with the specified text.
The first cell of the table has a similar bug. createTable adds an unecessary
paragraph too.
--
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]