Details
-
Bug
-
Status: Resolved
-
Resolution: Fixed
-
1.0
-
None
-
None
-
Operating System: All
Platform: All
-
51807
Description
cellParts in TableContentPosition can be filled with null elements, because it is initialized in TableStepper::getCombinedKnuthElementsForRowGroup() basing on columnCount, but filled with activeCells only.
Line 202 in TableStepper
List cellParts = new java.util.ArrayList(columnCount);
need to be replaced with
List cellParts = new java.util.ArrayList(activeCells.size());