diff options
-rw-r--r-- | src/java/org/apache/fop/fo/FObj.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/java/org/apache/fop/fo/FObj.java b/src/java/org/apache/fop/fo/FObj.java index d2dafc6b3..d81d61123 100644 --- a/src/java/org/apache/fop/fo/FObj.java +++ b/src/java/org/apache/fop/fo/FObj.java @@ -42,9 +42,6 @@ public class FObj extends FONode implements Constants { /** Formatting properties for this fo element. */ protected PropertyList propertyList; - /** Property manager for providing refined properties/traits. */ - protected PropertyManager propMgr; - /** The immediate child nodes of this node. */ public ArrayList childNodes = null; @@ -102,7 +99,6 @@ public class FObj extends FONode implements Constants { propertyList.addAttributesToList(attlist); propertyList.setWritingMode(); bind(propertyList); - propMgr = new PropertyManager(propertyList); } /** @@ -152,15 +148,6 @@ public class FObj extends FONode implements Constants { } /** - * Return the PropertyManager object for this FO. PropertyManager - * tends to hold the traits for this FO, and is primarily used in layout. - * @return the property manager for this FO - */ - public PropertyManager getPropertyManager() { - return propMgr; - } - - /** * Return the property list object for this FO. PropertyList tends * to hold the base, pre-trait properties for this FO, either explicitly * declared in the input XML or from inherited values. |