jeremias 2005/02/08 08:37:23
Modified: src/java/org/apache/fop/layoutmgr/table Row.java
Log:
Fix for ArrayOutOfBoundsException in resetPosition().
Revision Changes Path
1.21 +1 -1 xml-fop/src/java/org/apache/fop/layoutmgr/table/Row.java
Index: Row.java
===================================================================
RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/layoutmgr/table/Row.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- Row.java 8 Feb 2005 16:25:12 -0000 1.20
+++ Row.java 8 Feb 2005 16:37:23 -0000 1.21
@@ -387,7 +387,7 @@
protected void reset(Position pos) {
//LayoutManager curLM; // currently active LM
CellInfo curCellInfo;
- int cellIndex = 0;
+ int cellIndex = 1;
if (pos == null) {
while ((curCellInfo = getCellInfo(cellIndex)) != null) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]