We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c7cb4 commit 28bdf7fCopy full SHA for 28bdf7f
layout/src/main/java/com/itextpdf/layout/renderer/CollapsedTableBorders.java
@@ -78,7 +78,7 @@ protected CollapsedTableBorders collapseAllBordersAndEmptyRows() {
78
currentRow = rows.get(row);
79
boolean hasCells = false;
80
for (int col = 0; col < numberOfColumns; col++) {
81
- if (null != currentRow && null != currentRow[col]) {
+ if (null != currentRow[col]) {
82
int colspan = (int) currentRow[col].getPropertyAsInteger(Property.COLSPAN);
83
if (rowspansToDeduct[col] > 0) {
84
int rowspan = (int) currentRow[col].getPropertyAsInteger(Property.ROWSPAN) - rowspansToDeduct[col];
0 commit comments