In org.docx4j.model.table.TableModel.handleRow, I am for every table, hitting the 'log.warn' line below:
- Code: Select all
private void handleRow(NodeList cellContents, Tr tr, int r) {
//...
for (Tc tc : tcFinder.tcList) {
Node wtrNode = cellContents.item(r); // w:tr
if (wtrNode==null ) {
log.warn("Couldn't find item " + r);
}
addCell(tc, getTc(wtrNode, c, new IntRef(0)));
//...
}
}
This ...