From f5a14450c7f0e4ff9204621deb76c48decd06365 Mon Sep 17 00:00:00 2001 From: Simon Pepping Date: Wed, 20 Dec 2006 08:45:54 +0000 Subject: [PATCH] Remove unused attributes from TableCell. Patch by Richard Wheeldon . ASF Bugzilla Bug 41009. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@488966 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/fop/fo/flow/TableCell.java | 39 ------------------- 1 file changed, 39 deletions(-) diff --git a/src/java/org/apache/fop/fo/flow/TableCell.java b/src/java/org/apache/fop/fo/flow/TableCell.java index b5d42135f..a54144b91 100644 --- a/src/java/org/apache/fop/fo/flow/TableCell.java +++ b/src/java/org/apache/fop/fo/flow/TableCell.java @@ -66,36 +66,6 @@ public class TableCell extends TableFObj { /** used for FO validation */ private boolean blockItemFound = false; - /** - * Offset of content rectangle in inline-progression-direction, - * relative to table. - */ - protected int startOffset; - - /** - * Offset of content rectangle, in block-progression-direction, - * relative to the row. - */ - protected int beforeOffset = 0; - - /** - * Offset of content rectangle, in inline-progression-direction, - * relative to the column start edge. - */ - protected int startAdjust = 0; - - /** - * Adjust to theoretical column width to obtain content width - * relative to the column start edge. - */ - protected int widthAdjust = 0; - - /** For collapsed border style */ - protected int borderHeight = 0; - - /** Ypos of cell ??? */ - protected int top; - /** * @param parent FONode that is the parent of this object */ @@ -174,15 +144,6 @@ public class TableCell extends TableFObj { return true; } - /** - * Set position relative to table (set by body?) - * - * @param offset new offset - */ - public void setStartOffset(int offset) { - startOffset = offset; - } - /** * @return the Common Border, Padding, and Background Properties. */ -- 2.39.5