aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/PropertyList.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/fo/PropertyList.java')
-rw-r--r--src/java/org/apache/fop/fo/PropertyList.java12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyList.java b/src/java/org/apache/fop/fo/PropertyList.java
index d5421c085..e03a4cacd 100644
--- a/src/java/org/apache/fop/fo/PropertyList.java
+++ b/src/java/org/apache/fop/fo/PropertyList.java
@@ -95,7 +95,6 @@ public class PropertyList extends HashMap {
private PropertyList parentPropertyList = null;
private String namespace = "";
- private String elementName = "";
private FObj fobj = null;
/**
@@ -103,14 +102,12 @@ public class PropertyList extends HashMap {
* @param parentPropertyList the PropertyList belonging to the new objects
* parent
* @param space name of namespace
- * @param elementName name of element
*/
public PropertyList(FObj fObjToAttach, PropertyList parentPropertyList,
- String space, String elementName) {
+ String space) {
this.fobj = fObjToAttach;
this.parentPropertyList = parentPropertyList;
this.namespace = space;
- this.elementName = elementName;
}
/**
@@ -146,13 +143,6 @@ public class PropertyList extends HashMap {
}
/**
- * @return element name for this
- */
- public String getElement() {
- return elementName;
- }
-
- /**
* Return the value explicitly specified on this FO.
* @param propertyName The name of the property whose value is desired.
* It may be a compound name, such as space-before.optimum.