]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Non-applicable white-space-collapse property removed from fo:page-number and fo:page...
authorGlen Mazza <gmazza@apache.org>
Sun, 6 Jul 2003 22:02:31 +0000 (22:02 +0000)
committerGlen Mazza <gmazza@apache.org>
Sun, 6 Jul 2003 22:02:31 +0000 (22:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196626 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/flow/PageNumber.java
src/java/org/apache/fop/fo/flow/PageNumberCitation.java

index 1f33853107395c7c1fe94d1430b43ba806796672..045d97c60cb91424b6bac6300215846eaa905118 100644 (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();
 
     }
index 5e7627a9feea826271b61a0254d44d9273815d86..699ceb9c7ce01d7907a7201ef00bf45e0aade27b 100644 (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("")) {