git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198693
13f79535-47bb-0310-9956-
ffa450edef68
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
+import org.apache.fop.fo.flow.Marker;
import org.apache.fop.fo.flow.Table;
import org.apache.fop.fo.flow.TableBody;
import org.apache.fop.fo.flow.TableCell;
}
}
Object node = childInBodyIterator.next();
+ while (node instanceof Marker) {
+ node = childInBodyIterator.next();
+ }
this.currentRow.clear();
this.currentRowIndex++;
TableRow rowFO = null;