aboutsummaryrefslogtreecommitdiffstats
path: root/src/org
diff options
context:
space:
mode:
authorKaren Lease <klease@apache.org>2001-04-11 21:41:34 +0000
committerKaren Lease <klease@apache.org>2001-04-11 21:41:34 +0000
commitb0bff5ecd085bf3545be9be6c1ddb00437f1e570 (patch)
treeb567fb534c736d595c6713ca78017122bd45e3ef /src/org
parent927950aaa000cb1625f2e955c8b33380adf49e18 (diff)
downloadxmlgraphics-fop-b0bff5ecd085bf3545be9be6c1ddb00437f1e570.tar.gz
xmlgraphics-fop-b0bff5ecd085bf3545be9be6c1ddb00437f1e570.zip
remove commented out code
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194202 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org')
-rw-r--r--src/org/apache/fop/fo/PropertyManager.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/org/apache/fop/fo/PropertyManager.java b/src/org/apache/fop/fo/PropertyManager.java
index ed8a2c56e..9abc0e82d 100644
--- a/src/org/apache/fop/fo/PropertyManager.java
+++ b/src/org/apache/fop/fo/PropertyManager.java
@@ -74,38 +74,6 @@ public class PropertyManager {
initBorderInfo(BorderAndPadding.BOTTOM, saBottom);
initBorderInfo(BorderAndPadding.LEFT, saLeft);
initBorderInfo(BorderAndPadding.RIGHT, saRight);
-
- /****
- // Border color
- this.borderAndPadding.borderTopColor =
- properties.get(msgFmt.format(saTop)).getColorType();
- this.borderAndPadding.borderBottomColor =
- properties.get(msgFmt.format(saBottom)).getColorType();
- this.borderAndPadding.borderLeftColor =
- properties.get(msgFmt.format(saLeft)).getColorType();
- this.borderAndPadding.borderRightColor =
- properties.get(msgFmt.format(saRight)).getColorType();
-
- // Border style
- this.borderAndPadding.borderTopStyle =
- properties.get(msgFmt.format(saTop)).getEnum();
- this.borderAndPadding.borderBottomStyle =
- properties.get(msgFmt.format(saBottom)).getEnum();
- this.borderAndPadding.borderLeftStyle =
- properties.get(msgFmt.format(saLeft)).getEnum();
- this.borderAndPadding.borderRightStyle =
- properties.get(msgFmt.format(saRight)).getEnum();
-
- // Border width
- this.borderAndPadding.borderTopWidth =
- properties.get(msgFmt.format(saTop)).getCondLength();
- this.borderAndPadding.borderBottomWidth =
- properties.get(msgFmt.format(saBottom)).getCondLength();
- this.borderAndPadding.borderLeftWidth =
- properties.get(msgFmt.format(saLeft)).getCondLength();
- this.borderAndPadding.borderRightWidth =
- properties.get(msgFmt.format(saRight)).getCondLength();
- ****/
}
return borderAndPadding;
}