aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2007-09-21 16:32:00 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2007-09-21 16:32:00 +0000
commit901f7ecc09479f0e40c44453ce5d905aca355556 (patch)
tree702b9beeec62438347da0b25f2698276b8bbcc75 /src/java/org/apache/fop
parent5435ce4c5ee126855e5fedfa32bc8d8a115a2924 (diff)
downloadxmlgraphics-fop-901f7ecc09479f0e40c44453ce5d905aca355556.tar.gz
xmlgraphics-fop-901f7ecc09479f0e40c44453ce5d905aca355556.zip
Undo unnecessary changes of previous commit (r578197)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@578198 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop')
-rw-r--r--src/java/org/apache/fop/fo/PropertyList.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyList.java b/src/java/org/apache/fop/fo/PropertyList.java
index 6d4dbd43c..8a59b5751 100644
--- a/src/java/org/apache/fop/fo/PropertyList.java
+++ b/src/java/org/apache/fop/fo/PropertyList.java
@@ -577,7 +577,7 @@ public abstract class PropertyList {
*/
public CommonBorderPaddingBackground getBorderPaddingBackgroundProps()
throws PropertyException {
- return new CommonBorderPaddingBackground(this);
+ return new CommonBorderPaddingBackground(this, fobj);
}
/**
@@ -586,7 +586,7 @@ public abstract class PropertyList {
* @throws PropertyException if there's a problem while processing the properties
*/
public CommonHyphenation getHyphenationProps() throws PropertyException {
- return CommonHyphenation.getInstance(this);
+ return new CommonHyphenation(this);
}
/**
@@ -652,7 +652,7 @@ public abstract class PropertyList {
* @throws PropertyException if there's a problem while processing the properties
*/
public CommonFont getFontProps() throws PropertyException {
- return CommonFont.getInstance(this);
+ return CommonFont(this);
}
/**