aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2004-05-26 05:09:00 +0000
committerGlen Mazza <gmazza@apache.org>2004-05-26 05:09:00 +0000
commit8326a6bf3883438b59331858d0a704271821c526 (patch)
tree6f558d7c62aa4ab1bdcd3be022b33f84694ca3a5 /src/java
parentfc01d041b2bfc3f518a0fcf4987eeaaaa9528073 (diff)
downloadxmlgraphics-fop-8326a6bf3883438b59331858d0a704271821c526.tar.gz
xmlgraphics-fop-8326a6bf3883438b59331858d0a704271821c526.zip
Removed getPropertyList() method from PropertyManager, as that method
is already available on the FObj (which owns both the PropertyList and the PropertyManager.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197632 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/fop/fo/PropertyManager.java8
-rw-r--r--src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java4
2 files changed, 2 insertions, 10 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyManager.java b/src/java/org/apache/fop/fo/PropertyManager.java
index a5b1e8333..d84564d46 100644
--- a/src/java/org/apache/fop/fo/PropertyManager.java
+++ b/src/java/org/apache/fop/fo/PropertyManager.java
@@ -70,14 +70,6 @@ public class PropertyManager implements Constants {
}
/**
- * Returns the property list that is used for lookup.
- * @return the property list
- */
- public PropertyList getPropertyList() {
- return propertyList;
- }
-
- /**
* Sets the Document object telling the property manager which fonts are
* available.
* @param foTreeControl foTreeControl implementation containing font
diff --git a/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java b/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java
index 0bfae0d3e..d3d42ac01 100644
--- a/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java
+++ b/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java
@@ -85,9 +85,9 @@ public class BlockContainerLayoutManager extends BlockStackingLayoutManager {
marginProps = propManager.getMarginProps();
borderProps = propManager.getBorderAndPadding();
- height = propManager.getPropertyList().get(
+ height = fobj.getPropertyList().get(
PR_BLOCK_PROGRESSION_DIMENSION | CP_OPTIMUM).getLength();
- width = propManager.getPropertyList().get(
+ width = fobj.getPropertyList().get(
PR_INLINE_PROGRESSION_DIMENSION | CP_OPTIMUM).getLength();
}