https://issues.apache.org/bugzilla/show_bug.cgi?id=51807
Bug #: 51807
Summary: Small memory waste in TableContentPosition
Product: Fop
Version: 1.0
Platform: All
OS/Version: All
Status: NEW
Severity: trivial
Priority: P2
Component: page-master/layout
AssignedTo: [email protected]
ReportedBy: [email protected]
Classification: Unclassified
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());
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.