Browse Source

Non-applicable white-space-collapse property removed from fo:page-number and fo:page-number-citation.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196626 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Glen Mazza 21 years ago
parent
commit
eb6e7c046c

+ 0
- 3
src/java/org/apache/fop/fo/flow/PageNumber.java View File

@@ -84,7 +84,6 @@ public class PageNumber extends FObj {
private float green;
private float blue;
private int wrapOption;
private int whiteSpaceCollapse;
private TextState ts;

public PageNumber(FONode parent) {
@@ -176,8 +175,6 @@ public class PageNumber extends FObj {
this.blue = c.getBlue();

this.wrapOption = this.properties.get("wrap-option").getEnum();
this.whiteSpaceCollapse =
this.properties.get("white-space-collapse").getEnum();
ts = new TextState();

}

+ 0
- 4
src/java/org/apache/fop/fo/flow/PageNumberCitation.java View File

@@ -94,7 +94,6 @@ public class PageNumberCitation extends FObj {
private float green;
private float blue;
private int wrapOption;
private int whiteSpaceCollapse;
private String pageNumber;
private String refId;
private TextState ts;
@@ -231,9 +230,6 @@ public class PageNumberCitation extends FObj {
this.blue = c.getBlue();

this.wrapOption = this.properties.get("wrap-option").getEnum();
this.whiteSpaceCollapse =
this.properties.get("white-space-collapse").getEnum();

this.refId = this.properties.get("ref-id").getString();

if (this.refId.equals("")) {

Loading…
Cancel
Save